CustomAppBar constructor

const CustomAppBar({
  1. required List<String> tabBarRoutes,
  2. required List<TabInfo> tabs,
  3. required String homeRoute,
  4. required String appBarTitle,
  5. required double iconSize,
  6. List<ActionInfo>? actions,
  7. double appBarIconWidth = 56.0,
  8. double tabIconSize = 26.0,
  9. double tabTextSize = 14.0,
  10. Key? key,
})

Implementation

const CustomAppBar({
  required this.tabBarRoutes,
  required this.tabs,
  required this.homeRoute,
  required this.appBarTitle,
  required this.iconSize,
  this.actions,
  this.appBarIconWidth = 56.0,
  this.tabIconSize = 26.0,
  this.tabTextSize = 14.0,
  super.key,
});