FTabsStyle constructor

FTabsStyle({
  1. required BoxDecoration decoration,
  2. required TextStyle selectedLabelTextStyle,
  3. required TextStyle unselectedLabelTextStyle,
  4. required BoxDecoration indicatorDecoration,
  5. required FFocusedOutlineStyle focusedOutlineStyle,
  6. EdgeInsets padding = const EdgeInsets.all(4),
  7. FTabBarIndicatorSize indicatorSize = FTabBarIndicatorSize.tab,
  8. double height = 35,
  9. double spacing = 10,
})

Creates a FTabsStyle.

Implementation

FTabsStyle({
  required this.decoration,
  required this.selectedLabelTextStyle,
  required this.unselectedLabelTextStyle,
  required this.indicatorDecoration,
  required this.focusedOutlineStyle,
  this.padding = const EdgeInsets.all(4),
  this.indicatorSize = FTabBarIndicatorSize.tab,
  this.height = 35,
  this.spacing = 10,
});