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 735 of file FlutterPlatformViews.mm.

Method Documentation

◆ initWithTarget:platformViewsController:

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

Definition at line 750 of file FlutterPlatformViews.mm.

753  :(id)target
754  platformViewsController:(FlutterPlatformViewsController*)platformViewsController {
755  self = [super initWithTarget:target action:nil];
756  if (self) {
757  self.delegate = self;
758  FML_DCHECK(platformViewsController);
759  _platformViewsController = platformViewsController;
761  }
762  return self;
763 }
NSInteger _currentTouchPointersCount

◆ recreateRecognizerWithTarget:

- (ForwardingGestureRecognizer *) recreateRecognizerWithTarget: (id)  target

Definition at line 750 of file FlutterPlatformViews.mm.

765  :(id)target {
766  return [[ForwardingGestureRecognizer alloc] initWithTarget:target
767  platformViewsController:_platformViewsController];
768 }

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