SearchableAppBar constructor

const SearchableAppBar({
  1. Key? key,
  2. String? hintTxt,
  3. Color? bgColor,
  4. Widget? searchField,
  5. Widget? leadingWidget,
  6. List<Widget>? actionsList,
  7. bool willShowBackArrow = true,
  8. double? leadingWidth,
  9. TextEditingController? searchController,
  10. ValueChanged<String>? onChanged,
  11. VoidCallback? onTapClearIcon,
})

Implementation

const SearchableAppBar({
  super.key,
  this.hintTxt,
  this.bgColor,
  this.searchField,
  this.leadingWidget,
  this.actionsList,
  this.willShowBackArrow = true,
  this.leadingWidth,
  this.searchController,
  this.onChanged,
  this.onTapClearIcon,
});