TabBarMerge constructor

const TabBarMerge({
  1. Key? key,
  2. required Widget tabBar,
  3. required Widget tabBarView,
  4. bool reverse = false,
  5. double? height,
  6. double? width,
  7. Widget? among,
  8. Widget? header,
  9. Widget? footer,
  10. EdgeInsetsGeometry? margin,
  11. EdgeInsetsGeometry? padding,
  12. Decoration? decoration,
  13. BoxConstraints? constraints,
})

Implementation

const TabBarMerge({
  super.key,
  required this.tabBar,
  required this.tabBarView,
  this.reverse = false,
  this.height,
  this.width,
  this.among,
  this.header,
  this.footer,
  this.margin,
  this.padding,
  this.decoration,
  this.constraints,
});