PlexFormFieldInput constructor

const PlexFormFieldInput({
  1. Key? key,
  2. PlexFormFieldGeneric properties = const PlexFormFieldGeneric.empty(),
  3. String? inputHint,
  4. TextEditingController? inputController,
  5. PlexWidgetController? errorController,
  6. TextInputType inputKeyboardType = TextInputType.name,
  7. bool isPassword = false,
  8. TextInputAction? inputAction,
  9. dynamic inputOnSubmit(
    1. String value
    )?,
  10. dynamic inputOnChange(
    1. String value
    )?,
  11. FocusNode? inputFocusNode,
  12. Widget? prefixIcon,
  13. Widget? suffixIcon,
  14. int? maxInputLength,
  15. int? maxLines,
  16. int? minLines,
})

Implementation

const PlexFormFieldInput({
  super.key,
  this.properties = const PlexFormFieldGeneric.empty(),
  this.inputHint,
  this.inputController,
  this.errorController,
  this.inputKeyboardType = TextInputType.name,
  this.isPassword = false,
  this.inputAction,
  this.inputOnSubmit,
  this.inputOnChange,
  this.inputFocusNode,
  this.prefixIcon,
  this.suffixIcon,
  this.maxInputLength,
  this.maxLines,
  this.minLines,
});