TextFormFieldPosition enum

The TextFormFieldPosition enum describes the desired location of the widget in respect to another of its own.

Inheritance

Constructors

TextFormFieldPosition()
const

Values

alone → const TextFormFieldPosition

Describes the position of the widget as having none of its borders against another TextFormFieldWrapper object

top → const TextFormFieldPosition

Describes the position of the widget having only its bottom border against another TextFormFieldWrapper object. This widget would on 'top' of another and none to its left or right

topLeft → const TextFormFieldPosition

Describes the position of the widget having its bottom and right borders against another TextFormFieldWrapper object. This widget would 'left' of another and 'above' another.

topRight → const TextFormFieldPosition

Describes the position of the widget having its bottom and left borders against another TextFormFieldWrapper object. This widget would 'right' of another and 'above' another.

bottom → const TextFormFieldPosition

Describes the position of the widget having only its top border against another TextFormFieldWrapper object. This widget would 'below' of another and none to its left or right

bottomLeft → const TextFormFieldPosition

Describes the position of the widget having its top and left borders against another TextFormFieldWrapper object. This widget would 'right' of another and 'below' another.

bottomRight → const TextFormFieldPosition

Describes the position of the widget having its top and left borders against another TextFormFieldWrapper object. This widget would 'right' of another and 'below' another.

left → const TextFormFieldPosition

Describes the position of the widget having only its right border against another TextFormFieldWrapper object. This widget would 'left' of another and none above or below.

Describes the position of the widget having only its left border against another TextFormFieldWrapper object. This widget would 'right' of another and none above or below.

center → const TextFormFieldPosition

Describes the position of the widget having all borders against another TextFormFieldWrapper object. This widget would have a widget above, below, left and right of it.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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<TextFormFieldPosition>
A constant List of the values in this enum, in order of their declaration.