Flutter Engine
 
Loading...
Searching...
No Matches
FlutterChannelKeyResponder Class Reference

#include <FlutterChannelKeyResponder.h>

Inheritance diagram for FlutterChannelKeyResponder:
<FlutterKeyPrimaryResponder> <FlutterKeyPrimaryResponder>

Instance Methods

(nonnull instancetype) - initWithChannel:
 
(nonnull instancetype) - initWithChannel:
 
- Instance Methods inherited from <FlutterKeyPrimaryResponder>
(void) - handlePress:callback:
 
(void) - handleEvent:callback:
 
(void) - syncModifiersIfNeeded:timestamp:
 

Additional Inherited Members

- Properties inherited from <FlutterKeyPrimaryResponder>
NSMutableDictionary< NSNumber *, NSNumber * > * layoutMap
 

Detailed Description

A primary responder of |FlutterKeyboardManager| that handles events by sending the raw information through a method channel.

This class corresponds to the RawKeyboard API in the framework.

A primary responder of |FlutterKeyboardManager| that handles events by sending the raw information through the method channel.

This class communicates with the RawKeyboard API in the framework.

Definition at line 20 of file FlutterChannelKeyResponder.h.

Method Documentation

◆ initWithChannel: [1/2]

- (nonnull instancetype) initWithChannel: (nonnull FlutterBasicMessageChannel*)  channel

Create an instance by specifying the method channel to use.

Definition at line 89 of file FlutterChannelKeyResponder.mm.

95 self = [super init];
96 if (self != nil) {
98 _pressedModifiers = 0;
99 }
100 return self;
101}
FlutterMethodChannel * _channel
const gchar * channel

References _channel, channel, and self.

◆ initWithChannel: [2/2]

- (nonnull instancetype) initWithChannel: (nonnull FlutterBasicMessageChannel *)  channel

Create an instance by specifying the method channel to use.


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