builderHeader property
Custom builder for the picker header.
When provided, this builder replaces the default header (which contains title, cancel, and confirm buttons). The hideHeader property is ignored when this builder is used.
This allows complete customization of the header area.
Example:
builderHeader: (context) => Container(
padding: EdgeInsets.all(16),
child: Text('Custom Header'),
)
Implementation
final WidgetBuilder? builderHeader;