Flutter Engine Uber Docs
Docs for the entire Flutter Engine repo.
 
Loading...
Searching...
No Matches
ForwardingGestureRecognizer Class Reference

#include <FlutterPlatformViews_Internal.h>

Inheritance diagram for ForwardingGestureRecognizer:

Instance Methods

(instancetype) - initWithTarget:platformViewsController:
 
(ForwardingGestureRecognizer *) - recreateRecognizerWithTarget:
 

Detailed Description

Definition at line 770 of file FlutterPlatformViews.mm.

Method Documentation

◆ initWithTarget:platformViewsController:

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

Definition at line 785 of file FlutterPlatformViews.mm.

788 :(id)target
789 platformViewsController:(FlutterPlatformViewsController*)platformViewsController {
790 self = [super initWithTarget:target action:nil];
791 if (self) {
792 self.delegate = self;
793 FML_DCHECK(platformViewsController);
794 _platformViewsController = platformViewsController;
796 }
797 return self;
798}
NSInteger _currentTouchPointersCount
uint32_t * target
#define FML_DCHECK(condition)
Definition logging.h:122
const uintptr_t id

◆ recreateRecognizerWithTarget:

- (ForwardingGestureRecognizer *) recreateRecognizerWithTarget: (id target

Definition at line 785 of file FlutterPlatformViews.mm.

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

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