TabBarMerge constructor

const TabBarMerge({
  1. Key? key,
  2. required Widget tabBar,
  3. required TabController controller,
  4. List<Widget>? tabView,
  5. bool reverse = false,
  6. double? height,
  7. ScrollPhysics? physics,
  8. double? width,
  9. Widget? among,
  10. Widget? header,
  11. Widget? footer,
  12. EdgeInsetsGeometry? margin,
  13. EdgeInsetsGeometry? padding,
  14. Decoration? decoration,
  15. BoxConstraints? constraints,
  16. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
})

Implementation

const TabBarMerge({
  super.key,
  required this.tabBar,
  required this.controller,
  this.tabView,
  this.reverse = false,
  this.height,
  this.physics,
  this.width,
  this.among,
  this.header,
  this.footer,
  this.margin,
  this.padding,
  this.decoration,
  this.constraints,
  this.dragStartBehavior = DragStartBehavior.start,
});