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 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
uint32_t * target
#define FML_DCHECK(condition)
Definition logging.h:122
const uintptr_t id

◆ 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: