picker
library
Typedefs
-
PickerConfirmBeforeCallback
= Future<bool> Function(Picker picker, List<int> selected)
-
Callback function that is called before confirming the picker selection.
-
PickerConfirmCallback
= void Function(Picker picker, List<int> selected)
-
Callback function that is called when the picker selection is confirmed.
-
PickerItemBuilder
= Widget? Function(BuildContext context, String? text, Widget? child, bool selected, int col, int index)
-
Builder function for customizing individual picker items.
-
PickerSelectedCallback
= void Function(Picker picker, int index, List<int> selected)
-
Callback function that is called when a picker item is selected.
-
PickerValueFormat<T>
= String Function(T value)
-
Callback function for formatting picker values to display strings.
-
PickerWidgetBuilder
= Widget Function(BuildContext context, Widget pickerWidget)
-
Builder function for customizing the picker widget.