TextInputWidget constructor

TextInputWidget({
  1. TextEditingController? controller,
  2. FocusNode? focusNode,
  3. void onChanged(
    1. String
    )?,
  4. AutovalidateMode? autovalidateMode,
  5. InputDecorationV3? decoration,
  6. String? validator(
    1. String?
    )?,
  7. bool obscureText = false,
  8. int? maxLines = 1,
  9. bool? enabled,
  10. bool readOnly = false,
  11. List<TextInputFormatter>? inputFormatters,
  12. TextInputType? keyboardType,
  13. TextStyle? style,
  14. Key? key,
})

Implementation

TextInputWidget(
    {this.controller,
    this.focusNode,
    this.onChanged,
    this.autovalidateMode,
    this.decoration,
    this.validator,
    this.obscureText = false,
    this.maxLines = 1,
    this.enabled,
    this.readOnly = false,
    this.inputFormatters,
    this.keyboardType,
    this.style,
    Key? key})
    : super(key: key);