PickerWidgetBuilder typedef

PickerWidgetBuilder = Widget Function(BuildContext context, Widget pickerWidget)

Builder function for customizing the picker widget.

This allows complete customization of how the picker is presented.

Parameters:

  • context - The build context
  • pickerWidget - The default picker widget

Returns a customized widget wrapping or replacing the picker.

Implementation

typedef PickerWidgetBuilder = Widget Function(
    BuildContext context, Widget pickerWidget);