FItemDivider enum

The divider between items in a group.

Inheritance
Available extensions

Values

full → const FItemDivider

Represents a divider that horizontally spans the entire item.

indented → const FItemDivider

Represents a divider that partially spans the item horizontally.

An item is always responsible for the divider directly below it.

For FItem.new, the divider spans from the title's left edge to the item's right edge. It is always aligned to the title of the item above the divider.

-----------------------------
| [prefix] [title]          | <- Item A
|          ---------------- |
| [title]                   | <- Item B
-----------------------------

For FItem.raw, the divider spans from the child's left edge to the item's right edge. It is always aligned to the child of the item above the divider.

-----------------------------
| [prefix] [child]          | <- Item A
|          ---------------- |
| [child]                   | <- Item B
-----------------------------
none → const FItemDivider

No divider between items.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
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<FItemDivider>
A constant List of the values in this enum, in order of their declaration.