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

Method Documentation

◆ initWithTarget:platformViewsController:

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

Definition at line 709 of file FlutterPlatformViews.mm.

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

◆ recreateRecognizerWithTarget:

- (ForwardingGestureRecognizer *) recreateRecognizerWithTarget: (id)  target

Definition at line 709 of file FlutterPlatformViews.mm.

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

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