PasswordTextForm constructor
const
PasswordTextForm({
- Key? key,
- double border = 20,
- Color boxFillColor = const Color.fromARGB(255, 217, 214, 214),
- String hinText = 'Password',
- TextEditingController? controller,
- String? validate(
- String? val
- TextInputType? keyBoardType,
- bool autoFocus = false,
- bool cursorOpacityAanimation = true,
- double cursorHight = 30,
- double cursorWidth = 2,
- double cursorRadius = 20,
- Color cursorColor = Colors.grey,
- InputDecoration? inputDecoration,
Implementation
const PasswordTextForm({
super.key,
this.border = 20,
this.boxFillColor = const Color.fromARGB(255, 217, 214, 214),
this.hinText = 'Password',
this.controller,
this.validate,
this.keyBoardType,
this.autoFocus = false,
this.cursorOpacityAanimation = true,
this.cursorHight = 30,
this.cursorWidth = 2,
this.cursorRadius = 20,
this.cursorColor = Colors.grey,
this.inputDecoration,
});