FxTextField constructor
FxTextField({
- Key? key,
- FxFieldOptions options = const FxFieldOptions(),
- InputDecoration decoration = const InputDecoration(),
- ValueChanged<
String?> ? onSaved, - ValueChanged<
String> ? onChanged, - FormFieldValidator<
String> ? validator, - TextEditingController? controller,
- ValueChanged<
String> ? onSubmitted, - String? initialValue,
- 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,
});