Add missing semantics flag for embedder (flutter/engine#25932)

Add in flags kFlutterSemanticsFlagIsSlider and kFlutterSemanticsFlagIsKeyboardKey
from SemanticsFlags.
This commit is contained in:
Yuanyao Zhong 2021-05-13 17:37:56 -04:00 committed by GitHub
parent e222385589
commit 93bb74ba46

View File

@ -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 {