TextInput constructor
const
TextInput({
- Key? key,
- String? title,
- required dynamic callback(),
- String field = "",
- FocusNode? focusNode,
- VoidCallback? onEditingComplete,
- TextInputAction? textInputAction,
- TextInputType? textInputType,
- bool capsAll = true,
Implementation
const TextInput({
super.key,
this.title,
required this.callback,
this.field = "",
this.focusNode,
this.onEditingComplete,
this.textInputAction,
this.textInputType,
this.capsAll = true,
});