PickerDelimiter class

A delimiter widget that can be inserted between picker columns.

Delimiters allow you to add visual separators or contextual elements between picker columns to improve readability and user experience.

Example:

delimiter: [
  PickerDelimiter(child: Text(':'), column: 1),
  PickerDelimiter(child: Icon(Icons.arrow_forward), column: 2),
]

Constructors

PickerDelimiter.new({required Widget? child, int column = 1})
Creates a picker delimiter.

Properties

child Widget?
The widget to display as a delimiter.
final
column int
The column position where this delimiter should be inserted.
final
hashCode int
The hash code for this object.
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