Flutter iOS Embedder
ForwardingGestureRecognizer Class Reference
Inheritance diagram for ForwardingGestureRecognizer:

Instance Methods

(instancetype) - initWithTarget:platformViewsController:
 

Detailed Description

Definition at line 955 of file FlutterPlatformViews.mm.

Method Documentation

◆ initWithTarget:platformViewsController:

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

Definition at line 1126 of file FlutterPlatformViews.mm.

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

References _currentTouchPointersCount, and _platformViewsController.


The documentation for this class was generated from the following file:
_currentTouchPointersCount
NSInteger _currentTouchPointersCount
Definition: FlutterPlatformViews.mm:1108
_platformViewsController
std::shared_ptr< flutter::FlutterPlatformViewsController > _platformViewsController
Definition: FlutterEngine.mm:124
id
int32_t id
Definition: SemanticsObjectTestMocks.h:20