Answers for "im going from first screen to second and from there to third but dont want to go back in flutter"

Go
0

im going from first screen to second and from there to third but dont want to go back in flutter

Navigator.pushAndRemoveUntil(
  context,
  MaterialPageRoute(builder: (context) => MainPage()),
  (Route<dynamic> route) => false,
);
Posted by: Guest on December-22-2020

Code answers related to "im going from first screen to second and from there to third but dont want to go back in flutter"

Browse Popular Code Answers by Language