Flutter iOS Embedder
ForwardingGestureRecognizer Class Reference
Inheritance diagram for ForwardingGestureRecognizer:

Instance Methods

(instancetype) - initWithTarget:platformViewsController:
 

Detailed Description

Definition at line 959 of file FlutterPlatformViews.mm.

Method Documentation

◆ initWithTarget:platformViewsController:

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

Definition at line 1130 of file FlutterPlatformViews.mm.

1130  :(id)target
1131  platformViewsController:
1132  (fml::WeakPtr<flutter::FlutterPlatformViewsController>)platformViewsController {
1133  self = [super initWithTarget:target action:nil];
1134  if (self) {
1135  self.delegate = self;
1136  FML_DCHECK(platformViewsController.get() != nullptr);
1137  _platformViewsController = std::move(platformViewsController);
1139  }
1140  return self;
1141 }

References _currentTouchPointersCount, and _platformViewsController.


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