ResponsiveTabPageLayout constructor

const ResponsiveTabPageLayout({
  1. NavigationStyle? navigationStyle,
  2. List<NavigationBarItem> navItems = const [],
  3. Key? key,
  4. int tabIndex = 0,
  5. Widget? body,
  6. AppBar? appbar,
  7. Widget? action,
  8. required dynamic onTabIndexChange(
    1. int
    )?,
})

Implementation

const ResponsiveTabPageLayout({
  this.navigationStyle,
  this.navItems = const [],
  Key? key,
  this.tabIndex = 0,
  this.body,
  this.appbar,
  this.action,
  required this.onTabIndexChange,
}) : super(key: key);