Flutter iOS Embedder
ForwardingGestureRecognizer Class Reference

#import <FlutterPlatformViews_Internal.h>

Inheritance diagram for ForwardingGestureRecognizer:

Instance Methods

(instancetype) - initWithTarget:platformViewsController:
 
(ForwardingGestureRecognizer *) - recreateRecognizerWithTarget:
 

Detailed Description

Definition at line 692 of file FlutterPlatformViews.mm.

Method Documentation

◆ initWithTarget:platformViewsController:

- (instancetype) initWithTarget: (id)  target
platformViewsController: (FlutterPlatformViewsController*)  platformViewsController 

Definition at line 707 of file FlutterPlatformViews.mm.

710  :(id)target
711  platformViewsController:(FlutterPlatformViewsController*)platformViewsController {
712  self = [super initWithTarget:target action:nil];
713  if (self) {
714  self.delegate = self;
715  FML_DCHECK(platformViewsController);
716  _platformViewsController = platformViewsController;
718  }
719  return self;
720 }
NSInteger _currentTouchPointersCount

◆ recreateRecognizerWithTarget:

- (ForwardingGestureRecognizer *) recreateRecognizerWithTarget: (id)  target

Definition at line 707 of file FlutterPlatformViews.mm.

722  :(id)target {
723  return [[ForwardingGestureRecognizer alloc] initWithTarget:target
724  platformViewsController:_platformViewsController];
725 }

The documentation for this class was generated from the following files: