CNNavigationBarSearch constructor

const CNNavigationBarSearch({
  1. Key? key,
  2. List<CNNavigationBarAction>? leading,
  3. String? title,
  4. List<CNNavigationBarAction>? trailing,
  5. required CNSearchConfig searchConfig,
  6. bool largeTitle = false,
  7. bool transparent = true,
  8. Color? tint,
  9. double? height,
})

Creates a search-enabled navigation bar.

Implementation

const CNNavigationBarSearch({
  super.key,
  this.leading,
  this.title,
  this.trailing,
  required this.searchConfig,
  this.largeTitle = false,
  this.transparent = true,
  this.tint,
  this.height,
});