TabbedAppBar constructor

const TabbedAppBar({
  1. Key? key,
  2. String? title,
  3. Widget? titleWidget,
  4. required List<Widget> tabs,
  5. TabController? controller,
  6. bool isScrollable = false,
  7. Color? backgroundColor,
  8. List<Color>? gradientColors,
  9. Color? indicatorColor,
  10. Color? labelColor,
  11. Color? unselectedLabelColor,
  12. double height = 60.0,
  13. double tabBarHeight = 48.0,
  14. Widget? leading,
  15. bool showBackButton = true,
  16. VoidCallback? onBack,
  17. List<Widget>? actions,
  18. TabBarIndicatorSize indicatorSize = TabBarIndicatorSize.label,
  19. EdgeInsetsGeometry? indicatorPadding,
  20. Decoration? indicator,
  21. String? semanticLabel,
  22. bool? enableSecurity,
})

Implementation

const TabbedAppBar({
  super.key,
  this.title,
  this.titleWidget,
  required this.tabs,
  this.controller,
  this.isScrollable = false,
  this.backgroundColor,
  this.gradientColors,
  this.indicatorColor,
  this.labelColor,
  this.unselectedLabelColor,
  this.height = 60.0,
  this.tabBarHeight = 48.0,
  this.leading,
  this.showBackButton = true,
  this.onBack,
  this.actions,
  this.indicatorSize = TabBarIndicatorSize.label,
  this.indicatorPadding,
  this.indicator,
  this.semanticLabel,
  this.enableSecurity,
});