SearchViewThemeData constructor

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

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

Implementation

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