FxTextField constructor

FxTextField({
  1. Key? key,
  2. FxFieldOptions options = const FxFieldOptions(),
  3. InputDecoration decoration = const InputDecoration(),
  4. ValueChanged<String?>? onSaved,
  5. ValueChanged<String>? onChanged,
  6. FormFieldValidator<String>? validator,
  7. TextEditingController? controller,
  8. ValueChanged<String>? onSubmitted,
  9. String? initialValue,
  10. List<TextInputFormatter>? inputFormatters,
})

Implementation

FxTextField({
  super.key,
  this.options = const FxFieldOptions(),
  this.decoration = const InputDecoration(),
  this.onSaved,
  this.onChanged,
  this.validator,
  this.controller,
  this.onSubmitted,
  this.initialValue,
  this.inputFormatters,
});