I am an android developer and now learning about flutter development. In flutter navigator is using to move one page to another like intents in android. While I am using navigate, the back is goes to the initial page.
Am using the below code for navigation.
Navigator.of(context).pushReplacement(
MaterialPageRoute(builder: (c) => widget.user ? Dashboard() : Login()),
);