InputField constructor
const
InputField({
- Key? key,
- required InputThemeData inputTheme,
- ValueChanged<
String> ? onChanged, - FormFieldSetter<
String> ? onSaved, - VoidCallback? onEditingComplete,
- ValueChanged<
String> ? onFieldSubmitted, - GestureTapCallback? onTap,
- TextEditingController? controller,
- String? initialValue,
- bool? enabled,
- bool readOnly = false,
- FocusNode? focusNode,
Implementation
const InputField({
super.key,
required this.inputTheme,
this.onChanged,
this.onSaved,
this.onEditingComplete,
this.onFieldSubmitted,
this.onTap,
this.controller,
this.initialValue,
this.enabled,
this.readOnly = false,
this.focusNode,
});