Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Instance Methods | List of all members
FlutterPlatformViewContainer Class Reference

Superview container for platform views, to which sublayer transforms are applied. More...

Inheritance diagram for FlutterPlatformViewContainer:

Instance Methods

(NSView *) - hitTest: [implementation]
 
(BOOL- isFlipped [implementation]
 

Detailed Description

Superview container for platform views, to which sublayer transforms are applied.

Definition at line 120 of file FlutterMutatorView.mm.

Method Documentation

◆ hitTest:

- (NSView *) hitTest: (NSPoint)  point
implementation

Definition at line 114 of file FlutterMutatorView.mm.

125 :(NSPoint)point {
126 NSView* res = [super hitTest:point];
127 return res != self ? res : nil;
128}

◆ isFlipped

- (BOOL) isFlipped
implementation

Definition at line 114 of file FlutterMutatorView.mm.

130 {
131 // Flutter transforms assume a coordinate system with an upper-left corner origin, with y
132 // coordinate values increasing downwards. This affects the view, view transforms, and
133 // sublayerTransforms.
134 return YES;
135}

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