TextFormFieldWidget constructor

TextFormFieldWidget({
  1. Key? key,
  2. String? hintText,
  3. TextStyle? hintStyle,
  4. bool? obscureText,
  5. dynamic onChanged(
    1. dynamic
    )?,
  6. dynamic borderColor,
  7. TextEditingController? controller,
  8. double? radius,
  9. FocusNode? focusNode,
  10. TextInputType? keyboardType,
  11. dynamic onFieldSubmitted(
    1. dynamic
    )?,
  12. String? validator(
    1. String?
    )?,
})

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);