Flutter iOS Embedder
ForwardingGestureRecognizer Class Reference
Inheritance diagram for ForwardingGestureRecognizer:

Instance Methods

(instancetype) - initWithTarget:platformViewsController:
 

Detailed Description

Definition at line 982 of file FlutterPlatformViews.mm.

Method Documentation

◆ initWithTarget:platformViewsController:

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

Definition at line 1153 of file FlutterPlatformViews.mm.

1153  :(id)target
1154  platformViewsController:
1155  (fml::WeakPtr<flutter::FlutterPlatformViewsController>)platformViewsController {
1156  self = [super initWithTarget:target action:nil];
1157  if (self) {
1158  self.delegate = self;
1159  FML_DCHECK(platformViewsController.get() != nullptr);
1160  _platformViewsController = std::move(platformViewsController);
1162  }
1163  return self;
1164 }

References _currentTouchPointersCount, and _platformViewsController.


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