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

Method Documentation

◆ initWithTarget:platformViewsController:

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

Definition at line 711 of file FlutterPlatformViews.mm.

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

◆ recreateRecognizerWithTarget:

- (ForwardingGestureRecognizer *) recreateRecognizerWithTarget: (id)  target

Definition at line 711 of file FlutterPlatformViews.mm.

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

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