AtomicSearchAppBar constructor

const AtomicSearchAppBar({
  1. Key? key,
  2. ValueChanged<String>? onSearch,
  3. ValueChanged<String>? onSearchChanged,
  4. String hintText = 'Search...',
  5. bool showBackButton = true,
  6. List<Widget>? actions,
  7. Color? backgroundColor,
})

Implementation

const AtomicSearchAppBar({
  super.key,
  this.onSearch,
  this.onSearchChanged,
  this.hintText = 'Search...',
  this.showBackButton = true,
  this.actions,
  this.backgroundColor,
});