FloatingTabBar constructor

const FloatingTabBar({
  1. Key? key,
  2. required List<TabItem> children,
  3. AppBar? parentAppbar,
  4. double? minExtendedWidth = 200,
  5. bool? useIndicator,
  6. Widget? leading,
  7. Color? indicatorColor,
  8. Color? activeColor,
  9. Color? inactiveColor,
  10. Color? backgroundColor,
  11. bool? isFloating = true,
  12. bool? useNautics = false,
  13. bool? showTabLabelsForNonFloating = false,
  14. bool? showTabLabelsForFloating = false,
  15. bool? smallScreenMode,
  16. Widget? nauticsFooter,
})

Implementation

const FloatingTabBar({
  Key? key,
  required this.children,
  this.parentAppbar,
  this.minExtendedWidth = 200,
  this.useIndicator,
  this.leading,
  this.indicatorColor,
  this.activeColor,
  this.inactiveColor,
  this.backgroundColor,
  this.isFloating = true,
  this.useNautics = false,
  this.showTabLabelsForNonFloating = false,
  this.showTabLabelsForFloating = false,
  this.smallScreenMode,
  this.nauticsFooter,
}) : super(key: key);