SearchBarInput constructor

const SearchBarInput({
  1. Key? key,
  2. dynamic controller,
  3. ValueChanged<String>? onChange,
  4. String hintText = 'Search',
  5. VoidCallback? onSearchPressed,
  6. String labelText = 'Search',
  7. bool showLabel = true,
})

Implementation

const SearchBarInput({
  super.key,
  this.controller,
  this.onChange,
  this.hintText = 'Search',
  this.onSearchPressed,
  this.labelText = 'Search',
  this.showLabel = true,
});