ReactiveTimePickerBuilder typedef

ReactiveTimePickerBuilder = Widget Function(BuildContext context, ReactiveTimePickerDelegate picker, Widget? child)

A builder that builds a widget responsible to decide when to show the picker dialog.

The builder passes a delegate picker as argument that has a method to show the dialog, it also has a property to access the FormControl that is bound to ReactiveTimePicker.

See also ReactiveTimePickerDelegate.

Implementation

typedef ReactiveTimePickerBuilder = Widget Function(
    BuildContext context, ReactiveTimePickerDelegate picker, Widget? child);