Flutter iOS Embedder
ForwardingGestureRecognizer Class Reference

#import <FlutterPlatformViews_Internal.h>

Inheritance diagram for ForwardingGestureRecognizer:

Instance Methods

(instancetype) - initWithTarget:platformViewsController:
 

Detailed Description

Definition at line 196 of file FlutterPlatformViews_Internal.h.

Method Documentation

◆ initWithTarget:platformViewsController:

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

Definition at line 705 of file FlutterPlatformViews_Internal.mm.

705  :(id)target
706  platformViewsController:
707  (fml::WeakPtr<flutter::PlatformViewsController>)platformViewsController {
708  self = [super initWithTarget:target action:nil];
709  if (self) {
710  self.delegate = self;
711  FML_DCHECK(platformViewsController.get() != nullptr);
712  _platformViewsController = std::move(platformViewsController);
714  }
715  return self;
716 }

References _currentTouchPointersCount, and _platformViewsController.


The documentation for this class was generated from the following files:
_currentTouchPointersCount
NSInteger _currentTouchPointersCount
Definition: FlutterPlatformViews_Internal.mm:687
_platformViewsController
std::shared_ptr< flutter::PlatformViewsController > _platformViewsController
Definition: FlutterEngine.mm:126