TabSwitcherWidget constructor

TabSwitcherWidget({
  1. required TabSwitcherController controller,
  2. required TabWidgetBuilder? appBarBuilder,
  3. TabWidgetBuilder? bodyBuilder,
  4. WidgetBuilder? emptyScreenBuilder,
  5. WidgetBuilder? switcherFooterBuilder,
  6. int appBarHeight = 56,
  7. Color? backgroundColor,
})

Implementation

TabSwitcherWidget({
  required this.controller,
  required this.appBarBuilder,
  this.bodyBuilder,
  this.emptyScreenBuilder,
  this.switcherFooterBuilder,
  this.appBarHeight = 56,
  this.backgroundColor,
}) {
  initPageControllers();
}