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

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