Answers for "navigator push and remove until flutter"

2

push and remove until flutter

//named
Navigator.of(context)
    .pushNamedAndRemoveUntil('/login', (Route<dynamic> route) => false);
    
//not named
Navigator.of(context).pushAndRemoveUntil(MaterialPageRoute(builder: (context) =>
    LoginScreen()), (Route<dynamic> route) => false),
Posted by: Guest on June-09-2020
0

flutter navigator remove all routes and navigate to a new screen

Navigator.pushAndRemoveUntil<dynamic>(
        context,
        MaterialPageRoute<dynamic>(
          builder: (BuildContext context) => YourPageNameGoesHere(),
        ),
        (route) => false,//if you want to disable back feature set to false
);
Posted by: Guest on March-01-2021

Code answers related to "navigator push and remove until flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language