jokilic / moderni_alias

A simple app made in Flutter. Game to guess words with your friends.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pressing the back button after the game finishes brings you back in

jokilic opened this issue · comments

Pressing the back button should bring you to the main menu, without any possibility of entering the previously played game.

Fix with

Navigator.popUntil(
      context,
      ModalRoute.withName(HomePage.routeName),
    );