FTabsStyle constructor

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

Creates a FTabsStyle.

Implementation

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