Flutter remove all routes

前端 未结 10 1887
难免孤独
难免孤独 2021-01-30 04:46

I want to develop a logout button that will send me to the log in route and remove all other routes from the Navigator. The documentation doesn\'t seem to explain h

10条回答
  •  心在旅途
    2021-01-30 05:29

    i can done with the following code snippet :

     Navigator.of(context).pushAndRemoveUntil(MaterialPageRoute(builder: (context) =>
        LoginScreen()), (Route route) => false),
    

    if you want to remove all the route below the pushed route, RoutePredicate always return false, e.g (Route route) => false.

提交回复
热议问题