TabButtons constructor

TabButtons({
  1. Key? key,
  2. Color foregroundOn = Colors.white,
  3. Color foregroundOff = Colors.black,
  4. Color? backgroundOn = Colors.blue,
  5. Color? backgroundOff,
  6. double? height = 49,
  7. ScrollPhysics? physics,
  8. double? padding = 6,
  9. double borderRadius = 7,
  10. int? durationOff = 75,
  11. int? durationOn = 150,
})

Supply the 'general appearance' of the screen's ListView

Implementation

TabButtons({
  Key? key,
  this.foregroundOn = Colors.white,
  this.foregroundOff = Colors.black,
  this.backgroundOn = Colors.blue,
  this.backgroundOff,
  this.height = 49,
  this.physics,
  this.padding = 6,
  this.borderRadius = 7,
  this.durationOff = 75,
  this.durationOn = 150,
}) : super(key: key);