added unfocus when review button is clicked when adding a PizzaEvent

This commit is contained in:
broodjeaap89 2021-07-11 18:00:08 +02:00
parent d7dd3b5ca5
commit 9dd2c83646

View file

@ -184,6 +184,7 @@ class AddPizzaEventPageState extends State<AddPizzaEventPage> {
setState(() { this.nameValidation = true; }); setState(() { this.nameValidation = true; });
return; return;
} }
FocusScope.of(context).unfocus();
DateTime eventTime = await showDialog( DateTime eventTime = await showDialog(
context: context, context: context,
builder: (context) { builder: (context) {