TextFormFieldWidget constructor
TextFormFieldWidget({
- Key? key,
- String? hintText,
- TextStyle? hintStyle,
- bool? obscureText,
- dynamic onChanged(
- dynamic
- dynamic borderColor,
- TextEditingController? controller,
- double? radius,
- FocusNode? focusNode,
- TextInputType? keyboardType,
- dynamic onFieldSubmitted(
- dynamic
- String? validator()?,
Implementation
TextFormFieldWidget(
{Key? key,
this.hintText,
this.hintStyle,
this.obscureText,
this.onChanged,
this.borderColor,
this.controller,
this.radius,
this.focusNode,
/// this.scrollPadding,
this.keyboardType,
this.onFieldSubmitted,
this.validator})
: super(key: key);