Unverified Commit 903c5f8d authored by Amir Hardon's avatar Amir Hardon Committed by GitHub

Add DartDoc for UiKitViewController#acceptGesture (#24127)

parent 75ca39f8
......@@ -617,6 +617,11 @@ class UiKitViewController {
// TODO(amirh): invoke the iOS platform views channel direction method once available.
}
/// Accept an active gesture.
///
/// When a touch sequence is happening on the embedded UIView all touch events are delayed.
/// Calling this method releases the delayed events to the embedded UIView and makes it consume
/// any following touch events for the pointers involved in the active gesture.
Future<void> acceptGesture() {
final Map<String, dynamic> args = <String, dynamic> {
'id': id,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment