Answers for "to go to the next screen and no option to go back to the previous screen flutter"

2

Navigate to a new screen and back - Flutter

Navigator.push(
    context,
    MaterialPageRoute(builder: (context) => SecondRoute()),
  );
Posted by: Guest on September-12-2021

Code answers related to "to go to the next screen and no option to go back to the previous screen flutter"

Browse Popular Code Answers by Language