Add missing flag for embedder. (flutter/engine#12700)

Adding missing flag for IsFocusable that I missed in #12618
This commit is contained in:
Greg Spencer 2019-09-30 11:21:01 -07:00 committed by GitHub
parent 1ebef447d7
commit 5302cb60b3

View File

@ -170,6 +170,8 @@ typedef enum {
///
/// Only applicable when kFlutterSemanticsFlagIsTextField flag is on.
kFlutterSemanticsFlagIsReadOnly = 1 << 20,
/// Whether the semantic node can hold the user's focus.
kFlutterSemanticsFlagIsFocusable = 1 << 21,
} FlutterSemanticsFlag;
typedef enum {