TabbedAppBar constructor
const
TabbedAppBar({
- Key? key,
- String? title,
- Widget? titleWidget,
- required List<
Widget> tabs, - TabController? controller,
- bool isScrollable = false,
- Color? backgroundColor,
- List<
Color> ? gradientColors, - Color? indicatorColor,
- Color? labelColor,
- Color? unselectedLabelColor,
- double height = 60.0,
- double tabBarHeight = 48.0,
- Widget? leading,
- bool showBackButton = true,
- VoidCallback? onBack,
- List<
Widget> ? actions, - TabBarIndicatorSize indicatorSize = TabBarIndicatorSize.label,
- EdgeInsetsGeometry? indicatorPadding,
- Decoration? indicator,
- String? semanticLabel,
- 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,
});