DatePickerDateTimeOrder enum
Determines the order of the columns inside CupertinoDatePicker in time and date time mode.
Constants
- date_dayPeriod_time → const DatePickerDateTimeOrder
-
Order of the columns, from left to right: date, am/pm, hour, minute.
Example:
Fri Aug 31 | PM | 02 | 08
.const DatePickerDateTimeOrder(1)
- date_time_dayPeriod → const DatePickerDateTimeOrder
-
Order of the columns, from left to right: date, hour, minute, am/pm.
Example:
Fri Aug 31 | 02 | 08 | PM
.const DatePickerDateTimeOrder(0)
- dayPeriod_time_date → const DatePickerDateTimeOrder
-
Order of the columns, from left to right: am/pm, hour, minute, date.
Example:
PM | 02 | 08 | Fri Aug 31
.const DatePickerDateTimeOrder(3)
- time_dayPeriod_date → const DatePickerDateTimeOrder
-
Order of the columns, from left to right: hour, minute, am/pm, date.
Example:
02 | 08 | PM | Fri Aug 31
.const DatePickerDateTimeOrder(2)
-
values
→ const List<
DatePickerDateTimeOrder> -
A constant List of the values in this enum, in order of their declaration.
const List<
DatePickerDateTimeOrder>
Properties
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