CNTabBarSearchStyle constructor

const CNTabBarSearchStyle({
  1. double? iconSize,
  2. Color? iconColor,
  3. Color? activeIconColor,
  4. Color? searchBarBackgroundColor,
  5. Color? searchBarTextColor,
  6. Color? searchBarPlaceholderColor,
  7. Color? clearButtonColor,
  8. double? buttonSize,
  9. double? searchBarHeight,
  10. double? searchBarBorderRadius,
  11. EdgeInsets? searchBarPadding,
  12. EdgeInsets? contentPadding,
  13. double? spacing,
  14. Duration? animationDuration,
  15. bool showClearButton = true,
  16. CNSymbol? collapsedTabIcon,
})

Creates search tab styling configuration.

Implementation

const CNTabBarSearchStyle({
  this.iconSize,
  this.iconColor,
  this.activeIconColor,
  this.searchBarBackgroundColor,
  this.searchBarTextColor,
  this.searchBarPlaceholderColor,
  this.clearButtonColor,
  this.buttonSize,
  this.searchBarHeight,
  this.searchBarBorderRadius,
  this.searchBarPadding,
  this.contentPadding,
  this.spacing,
  this.animationDuration,
  this.showClearButton = true,
  this.collapsedTabIcon,
});