TextInputView constructor
const
TextInputView({
- Key? key,
- bool? autofocus = false,
- dynamic onFocus()?,
- dynamic onBlur()?,
- int? maxlength = -1,
- TextInputType? keyboardType,
- String? placeholder = '',
Implementation
const TextInputView(
{Key? key,
this.autofocus = false,
this.onFocus,
this.onBlur,
this.maxlength = -1,
this.keyboardType,
this.placeholder = ''})
: super(key: key);