8.7 released—WinterCG Compliance Part 1
Learn more
interface GestureEventData extends EventData {
  android: any;
  ios: any;
  type: GestureTypes;
  view: View;
}
Provides gesture event data.

Summary

Properties

android
ios
type
view
2 properties inherited from EventData
Click to expand

Properties

android

android: any
Gets the underlying native android specific [gesture detector](http://developer.android.com/reference/android/view/GestureDetector.html).

ios

ios: any
Gets the underlying native iOS specific [UIGestureRecognizer](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIGestureRecognizer_Class/).

type

Gets the type of the gesture.

view

view: View
Gets the view which originates the gesture.