FlutterFormInputPlainText constructor

const FlutterFormInputPlainText({
  1. Key? key,
  2. Widget? label,
  3. FocusNode? focusNode,
  4. InputDecoration? decoration,
  5. TextAlignVertical? textAlignVertical,
  6. bool expands = false,
  7. int? maxLines = 1,
  8. EdgeInsets? scrollPadding,
  9. int? maxLength,
  10. TextInputType? keyboardType,
  11. String? initialValue,
  12. dynamic onChanged(
    1. String?
    )?,
  13. dynamic onSaved(
    1. String?
    )?,
  14. String? validator(
    1. String?
    )?,
  15. dynamic onFieldSubmitted(
    1. String?
    )?,
  16. TextStyle? style,
  17. List<TextInputFormatter>? formatInputs,
  18. bool enabled = true,
  19. TextCapitalization textCapitalization = TextCapitalization.none,
  20. bool obscureText = false,
})

Implementation

const FlutterFormInputPlainText({
  super.key,
  this.label,
  this.focusNode,
  this.decoration,
  this.textAlignVertical,
  this.expands = false,
  this.maxLines = 1,
  this.scrollPadding,
  this.maxLength,
  this.keyboardType,
  this.initialValue,
  this.onChanged,
  this.onSaved,
  this.validator,
  this.onFieldSubmitted,
  this.style,
  this.formatInputs,
  this.enabled = true,
  this.textCapitalization = TextCapitalization.none,
  this.obscureText = false,
});