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

Method Documentation

◆ initWithTarget:platformViewsController:

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

Definition at line 755 of file FlutterPlatformViews.mm.

758  :(id)target
759  platformViewsController:(FlutterPlatformViewsController*)platformViewsController {
760  self = [super initWithTarget:target action:nil];
761  if (self) {
762  self.delegate = self;
763  FML_DCHECK(platformViewsController);
764  _platformViewsController = platformViewsController;
766  }
767  return self;
768 }
NSInteger _currentTouchPointersCount

◆ recreateRecognizerWithTarget:

- (ForwardingGestureRecognizer *) recreateRecognizerWithTarget: (id)  target

Definition at line 755 of file FlutterPlatformViews.mm.

770  :(id)target {
771  return [[ForwardingGestureRecognizer alloc] initWithTarget:target
772  platformViewsController:_platformViewsController];
773 }

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