InputSearchField constructor
const
InputSearchField({
- Key? key,
- String placeholder = 'Search...',
- TextEditingController? controller,
- ValueChanged<
String> ? onChanged, - VoidCallback? onSearch,
- VoidCallback? onClear,
- bool autoFocus = false,
- bool enabled = true,
Implementation
const InputSearchField({
super.key,
this.placeholder = 'Search...',
this.controller,
this.onChanged,
this.onSearch,
this.onClear,
this.autoFocus = false,
this.enabled = true,
});