FlowType enum

Defines the layout directions and behaviors for Flow widgets in the Arcane UI system.

  • column: Arranges children vertically like a Column, ideal for stacked content in forms or lists.
  • row: Arranges children horizontally like a Row, suitable for inline elements such as buttons or icons.
  • stack: Overlays children like a Stack, useful for layered UI elements with passthrough fitting.
  • wrap: Flows children into multiple lines like a Wrap, perfect for dynamic grids or tag clouds with consistent spacing.
Inheritance
Available extensions

Values

column → const FlowType
row → const FlowType
stack → const FlowType
wrap → const FlowType

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