mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Add missing semantics flag for embedder (flutter/engine#25932)
Add in flags kFlutterSemanticsFlagIsSlider and kFlutterSemanticsFlagIsKeyboardKey from SemanticsFlags.
This commit is contained in:
parent
e222385589
commit
93bb74ba46
@ -210,6 +210,10 @@ typedef enum {
|
||||
kFlutterSemanticsFlagIsFocusable = 1 << 21,
|
||||
/// Whether the semantics node represents a link.
|
||||
kFlutterSemanticsFlagIsLink = 1 << 22,
|
||||
/// Whether the semantics node represents a slider.
|
||||
kFlutterSemanticsFlagIsSlider = 1 << 23,
|
||||
/// Whether the semantics node represents a keyboard key.
|
||||
kFlutterSemanticsFlagIsKeyboardKey = 1 << 24,
|
||||
} FlutterSemanticsFlag;
|
||||
|
||||
typedef enum {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user