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

Method Documentation

◆ initWithTarget:platformViewsController:

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

Definition at line 786 of file FlutterPlatformViews.mm.

789  :(id)target
790  platformViewsController:(FlutterPlatformViewsController*)platformViewsController {
791  self = [super initWithTarget:target action:nil];
792  if (self) {
793  self.delegate = self;
794  FML_DCHECK(platformViewsController);
795  _platformViewsController = platformViewsController;
797  }
798  return self;
799 }
NSInteger _currentTouchPointersCount

◆ recreateRecognizerWithTarget:

- (ForwardingGestureRecognizer *) recreateRecognizerWithTarget: (id)  target

Definition at line 786 of file FlutterPlatformViews.mm.

801  :(id)target {
802  return [[ForwardingGestureRecognizer alloc] initWithTarget:target
803  platformViewsController:_platformViewsController];
804 }

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