We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf18983 commit c118a13Copy full SHA for c118a13
shell/platform/embedder/embedder.h
@@ -210,6 +210,10 @@ typedef enum {
210
kFlutterSemanticsFlagIsFocusable = 1 << 21,
211
/// Whether the semantics node represents a link.
212
kFlutterSemanticsFlagIsLink = 1 << 22,
213
+ /// Whether the semantics node represents a slider.
214
+ kFlutterSemanticsFlagIsSlider = 1 << 23,
215
+ /// Whether the semantics node represents a keyboard key.
216
+ kFlutterSemanticsFlagIsKeyboardKey = 1 << 24,
217
} FlutterSemanticsFlag;
218
219
typedef enum {
0 commit comments