OverlayVisibilityMode enum
Visibility of text field overlays based on the state of the current text entry.
Used to toggle the visibility behavior of the optional decorating widgets surrounding the EditableText such as the clear text button.
Values
- never → const OverlayVisibilityMode
-
Overlay will never appear regardless of the text entry state.
- editing → const OverlayVisibilityMode
-
Overlay will only appear when the current text entry is not empty.
This includes prefilled text that the user did not type in manually. But does not include text in placeholders.
- notEditing → const OverlayVisibilityMode
-
Overlay will only appear when the current text entry is empty.
This also includes not having prefilled text that the user did not type in manually. Texts in placeholders are ignored.
- always → const OverlayVisibilityMode
-
Always show the overlay regardless of the text entry state.
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
OverlayVisibilityMode> - A constant List of the values in this enum, in order of their declaration.