Settings
This commit is contained in:
parent
0d09dbb51b
commit
35a9f23db7
|
|
@ -42,7 +42,10 @@ class SettingsScaffold extends StatelessWidget {
|
||||||
localization.cancel,
|
localization.cancel,
|
||||||
style: TextStyle(color: Colors.white),
|
style: TextStyle(color: Colors.white),
|
||||||
),
|
),
|
||||||
onPressed: () => onCancelPressed(context),
|
onPressed: () {
|
||||||
|
FocusScope.of(context).requestFocus(FocusNode());
|
||||||
|
onCancelPressed(context);
|
||||||
|
},
|
||||||
);
|
);
|
||||||
}),
|
}),
|
||||||
Builder(builder: (BuildContext context) {
|
Builder(builder: (BuildContext context) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue