Skip to content

Commit

Permalink
Add isTextField and isFocused flags for iOS (flutter#4316)
Browse files Browse the repository at this point in the history
  • Loading branch information
goderbauer authored Nov 2, 2017
1 parent 3021e8f commit 60b6780
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/ui/semantics/semantics_node.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ enum class SemanticsFlags : int32_t {
kIsChecked = 1 << 1,
kIsSelected = 1 << 2,
kIsButton = 1 << 3,
kIsTextField = 1 << 4,
kIsFocused = 1 << 5,
};

struct SemanticsNode {
Expand Down

0 comments on commit 60b6780

Please sign in to comment.