AnimatedStatusButton constructor

AnimatedStatusButton({
  1. Key? key,
  2. double height = 44.0,
  3. double width = 200.0,
  4. double borderRaidus = 22.0,
  5. String buttonText = '',
  6. Color textNormalCcolor = Colors.white,
  7. Color borderNormalColor = Colors.deepOrange,
  8. Color backgroundNormalColor = Colors.deepOrange,
  9. Color backgroundSelectColor = const Color(0xffff62b2),
  10. Color borderSelectColor = const Color(0xffff62b2),
  11. Color backgroundHightColor = Colors.grey,
  12. Color textHightCcolor = Colors.white,
  13. int milliseconds = 1000,
  14. bool isUseSelect = true,
  15. AnimatedStatusController? animatedStatusController,
  16. Function? clickCallback,
})

Implementation

AnimatedStatusButton({
  Key ?key,
  this.height = 44.0,
  this.width = 200.0,
  this.borderRaidus = 22.0,
  this.buttonText='',
  this.textNormalCcolor = Colors.white,
  this.borderNormalColor = Colors.deepOrange,
  this.backgroundNormalColor = Colors.deepOrange,
  this.backgroundSelectColor = const Color(0xffff62b2),
  this.borderSelectColor = const Color(0xffff62b2),
  this.backgroundHightColor = Colors.grey,
  this.textHightCcolor = Colors.white,
  this.milliseconds = 1000,
  this.isUseSelect = true,
  this.animatedStatusController,
  this.clickCallback,
}):super(key:key);