TabBarBox constructor

const TabBarBox({
  1. Key? key,
  2. required TabBar tabBar,
  3. TabBarLevelPosition levelPosition = TabBarLevelPosition.right,
  4. AlignmentGeometry? alignment,
  5. EdgeInsetsGeometry? margin,
  6. EdgeInsetsGeometry? padding,
  7. double? height,
  8. Decoration? decoration,
  9. double? width,
  10. Widget? level,
})

Implementation

const TabBarBox({
  super.key,
  required this.tabBar,
  this.levelPosition = TabBarLevelPosition.right,
  this.alignment,
  this.margin,
  this.padding,
  this.height,
  this.decoration,
  this.width,
  this.level,
});