Handle nullable vs nonnullable mismatch
This commit is contained in:
parent
b0e1ed4f2c
commit
8e5deb94e8
|
@ -90,7 +90,7 @@ class _SpecialTextFieldState extends State<SpecialTextField> {
|
||||||
autofocus: widget.autofocus,
|
autofocus: widget.autofocus,
|
||||||
focusNode: widget.focusNode,
|
focusNode: widget.focusNode,
|
||||||
onChanged: widget.onChanged,
|
onChanged: widget.onChanged,
|
||||||
enabled: widget.enabled,
|
enabled: widget.enabled ?? false, // TODO: maybe there's a better way to do this? widget.enabled is nullable, should it be?
|
||||||
onSubmitted: (_) {
|
onSubmitted: (_) {
|
||||||
if (widget.nextFocusNode != null) {
|
if (widget.nextFocusNode != null) {
|
||||||
FocusScope.of(context).requestFocus(widget.nextFocusNode);
|
FocusScope.of(context).requestFocus(widget.nextFocusNode);
|
||||||
|
|
Loading…
Reference in New Issue