JumpTextfield constructor

JumpTextfield({
  1. Key? key,
  2. required dynamic tappedJump(
    1. BuildContext context,
    2. int index
    ),
  3. double groupSpacing = 10,
  4. int placeHolderPage = 1,
  5. Color colorBackGround = Colors.blue,
  6. String confirmTitle = "确定",
  7. Widget? confirmWidget,
  8. Color colorPrimary = Colors.white,
  9. Color backgroundColor = Colors.white54,
  10. Color borderColor = Colors.grey,
  11. double borderWidth = 1.0,
  12. double borderRadius = 5.0,
})

Implementation

JumpTextfield({Key? key,required this.tappedJump,this.groupSpacing = 10, this.placeHolderPage = 1,this.colorBackGround = Colors.blue,this.confirmTitle = "确定"
  ,this.confirmWidget,this.colorPrimary = Colors.white,this.backgroundColor = Colors.white54,this.borderColor = Colors.grey,this.borderWidth = 1.0,this.borderRadius = 5.0}) : super(key: key);