SimpleTabBarScreen constructor

const SimpleTabBarScreen({
  1. Key? key,
  2. required List<Widget> pages,
  3. required TabWidgetBuilder tabBarBuilder,
  4. TabBarPosition tabBarPosition = TabBarPosition.top,
  5. int? initialIndex,
  6. void onTabChanged(
    1. int
    )?,
  7. TabBarCubit? tabBarCubit,
  8. Widget? drawer,
  9. PreferredSizeWidget? appBar,
  10. List<PreferredSizeWidget>? appBars,
  11. Widget? bottomNavigation,
  12. List<Widget>? fabButtons,
  13. FloatingActionButtonLocation? floatingActionButtonLocation,
  14. double? defaultTabBarHeight,
})

Implementation

const SimpleTabBarScreen({
  super.key,
  required this.pages,
  required this.tabBarBuilder,
  this.tabBarPosition = TabBarPosition.top,
  this.initialIndex,
  this.onTabChanged,
  this.tabBarCubit,
  this.drawer,
  this.appBar,
  this.appBars,
  this.bottomNavigation,
  this.fabButtons,
  this.floatingActionButtonLocation,
  this.defaultTabBarHeight,
});