1.路由直接跳轉到下一個頁面:ui
Navigator.pushNamed(context,"/login");spa
2.跳轉的下一個頁面,替換當前的頁面:路由
Navigator.of(context).pushReplacementNamed('/registerSecond');route
3.返回上一個頁面:vi
Navigator.of(context).pop();co
4.清空堆棧路由,返回指定的路由:build
Navigator.of(context).pushAndRemoveUntil(push
new MaterialPageRouter(builder:(context)=>new Tabs()),background
(route)=>route==nullnew
);
好文推薦:https://www.jianshu.com/p/44650be76110