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.

Constants

always → const OverlayVisibilityMode

Always show the overlay regardless of the text entry state.

const OverlayVisibilityMode(3)
editing → const OverlayVisibilityMode

Overlay will only appear when the current text entry is not empty.

This includes pre-filled text that the user did not type in manually. But does not include text in placeholders.

const OverlayVisibilityMode(1)
never → const OverlayVisibilityMode

Overlay will never appear regardless of the text entry state.

const OverlayVisibilityMode(0)
notEditing → const OverlayVisibilityMode

Overlay will only appear when the current text entry is empty.

This also includes not having pre-filled text that the user did not type in manually. Texts in placeholders are ignored.

const OverlayVisibilityMode(2)
values → const List<OverlayVisibilityMode>

A constant List of the values in this enum, in order of their declaration.

const List<OverlayVisibilityMode>

Properties

index int

The integer index of this enum.

final
hashCode int
The hash code for this object. [...]
read-only, inherited
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited

Methods

toString() String
Returns a string representation of this object.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited

Operators

operator ==(dynamic other) bool
The equality operator. [...]
inherited