Class PlatformViewsChannel2.PlatformViewCreationRequest
java.lang.Object
io.flutter.embedding.engine.systemchannels.PlatformViewsChannel2.PlatformViewCreationRequest
- Enclosing class:
- PlatformViewsChannel2
Request sent from Flutter to create a new platform view.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal int
The layout direction of the new platform view.final double
final double
final ByteBuffer
Custom parameters that are unique to the desired platform view.final int
The ID of the platform view as seen by the Flutter side.final String
-
Constructor Summary
ConstructorsConstructorDescriptionPlatformViewCreationRequest
(int viewId, String viewType, double logicalWidth, double logicalHeight, int direction, ByteBuffer params) -
Method Summary
-
Field Details
-
viewId
public final int viewIdThe ID of the platform view as seen by the Flutter side. -
viewType
-
logicalWidth
public final double logicalWidth -
logicalHeight
public final double logicalHeight -
direction
public final int directionThe layout direction of the new platform view. -
params
Custom parameters that are unique to the desired platform view.
-
-
Constructor Details
-
PlatformViewCreationRequest
public PlatformViewCreationRequest(int viewId, @NonNull String viewType, double logicalWidth, double logicalHeight, int direction, @Nullable ByteBuffer params)
-