Flutter iOS Embedder
ForwardingGestureRecognizer Class Reference
Inheritance diagram for ForwardingGestureRecognizer:

Instance Methods

(instancetype) - initWithTarget:platformViewsController:
 

Detailed Description

Definition at line 978 of file FlutterPlatformViews.mm.

Method Documentation

◆ initWithTarget:platformViewsController:

- (instancetype) initWithTarget: (id)  target
platformViewsController: (fml::WeakPtr<flutter::FlutterPlatformViewsController>)  platformViewsController 

Definition at line 1136 of file FlutterPlatformViews.mm.

1136  :(id)target
1137  platformViewsController:
1138  (fml::WeakPtr<flutter::FlutterPlatformViewsController>)platformViewsController {
1139  self = [super initWithTarget:target action:nil];
1140  if (self) {
1141  self.delegate = self;
1142  FML_DCHECK(platformViewsController.get() != nullptr);
1143  _platformViewsController = std::move(platformViewsController);
1145  }
1146  return self;
1147 }

References _currentTouchPointersCount, and _platformViewsController.


The documentation for this class was generated from the following file:
_currentTouchPointersCount
NSInteger _currentTouchPointersCount
Definition: FlutterPlatformViews.mm:1118
_platformViewsController
std::shared_ptr< flutter::FlutterPlatformViewsController > _platformViewsController
Definition: FlutterEngine.mm:125