builder property

Widget Function(BuildContext context, ControlledComponentData<T> data) builder
final

A builder function that creates the widget UI using the provided state data.

This function receives the current BuildContext and ControlledComponentData containing the current value, change callback, and enabled state. The builder should create a widget that displays the current value and calls the onChanged callback when user interaction occurs.

Implementation

final Widget Function(BuildContext context, ControlledComponentData<T> data)
    builder;