SearchableTextBox constructor
const
SearchableTextBox({
- Key? key,
- required List searchables,
- required dynamic onSelected(
- dynamic
- String? hintText,
- VoidCallback? onTapped,
- VoidCallback? onClear,
- dynamic onChanged()?,
- double? searchBoxHeight,
- double? searchBoxWidth,
- Color? searchBarBgColor,
- Color? borderSideColor,
Implementation
const SearchableTextBox(
{super.key,
required this.searchables,
required this.onSelected,
this.hintText,
this.onTapped,
this.onClear,
this.onChanged,
this.searchBoxHeight,
this.searchBoxWidth,
this.searchBarBgColor,
this.borderSideColor});