SearchViewThemeData constructor

const SearchViewThemeData({
  1. Color? backgroundColor,
  2. double? elevation,
  3. Color? surfaceTintColor,
  4. BoxConstraints? constraints,
  5. BorderSide? side,
  6. OutlinedBorder? shape,
  7. double? headerHeight,
  8. TextStyle? headerTextStyle,
  9. TextStyle? headerHintStyle,
  10. Color? dividerColor,
})

Creates a theme that can be used for ThemeData.searchViewTheme.

Implementation

const SearchViewThemeData({
  this.backgroundColor,
  this.elevation,
  this.surfaceTintColor,
  this.constraints,
  this.side,
  this.shape,
  this.headerHeight,
  this.headerTextStyle,
  this.headerHintStyle,
  this.dividerColor,
});