Class PlatformViewsChannel2.PlatformViewTouch
java.lang.Object
io.flutter.embedding.engine.systemchannels.PlatformViewsChannel2.PlatformViewTouch
- Enclosing class:
- PlatformViewsChannel2
The state of a touch event in Flutter within a platform view.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal int
final int
final int
final Number
The amount of time that the touch has been pressed.final int
final Number
final int
final int
final long
final int
The number of pointers (e.g, fingers) involved in the touch event.final Object
Coordinates for each pointer, encoded in a raw format.final Object
Properties for each pointer, encoded in a raw format.final int
final int
The ID of the platform view as seen by the Flutter side.final float
Coordinate precision along the x-axis.final float
Coordinate precision along the y-axis. -
Constructor Summary
ConstructorsConstructorDescriptionPlatformViewTouch
(int viewId, Number downTime, Number eventTime, int action, int pointerCount, Object rawPointerPropertiesList, Object rawPointerCoords, int metaState, int buttonState, float xPrecision, float yPrecision, int deviceId, int edgeFlags, int source, int flags, long motionEventId) -
Method Summary
-
Field Details
-
viewId
public final int viewIdThe ID of the platform view as seen by the Flutter side. -
downTime
The amount of time that the touch has been pressed. -
eventTime
-
action
public final int action -
pointerCount
public final int pointerCountThe number of pointers (e.g, fingers) involved in the touch event. -
rawPointerPropertiesList
Properties for each pointer, encoded in a raw format. Expected to be formatted as a List[List[Integer]], where each inner list has two items: - An id, at index 0, corresponding toMotionEvent.PointerProperties.id
- A tool type, at index 1, corresponding toMotionEvent.PointerProperties.toolType
. -
rawPointerCoords
Coordinates for each pointer, encoded in a raw format. -
metaState
public final int metaState -
buttonState
public final int buttonState -
xPrecision
public final float xPrecisionCoordinate precision along the x-axis. -
yPrecision
public final float yPrecisionCoordinate precision along the y-axis. -
deviceId
public final int deviceId -
edgeFlags
public final int edgeFlags -
source
public final int source -
flags
public final int flags -
motionEventId
public final long motionEventId
-
-
Constructor Details
-
PlatformViewTouch
public PlatformViewTouch(int viewId, @NonNull Number downTime, @NonNull Number eventTime, int action, int pointerCount, @NonNull Object rawPointerPropertiesList, @NonNull Object rawPointerCoords, int metaState, int buttonState, float xPrecision, float yPrecision, int deviceId, int edgeFlags, int source, int flags, long motionEventId)
-