pushReplacementNamed //替代掉当前掉路由
pushNamed //压入一个路由
popAndPushNamed//跳到已在堆栈内的某个路由
pop//返回上一页
Navigator.of(context).pushNamed('/register'); //写法一
Navigator.pushReplacementNamed(context, '/register'); //写法二
pushReplacementNamed //替代掉当前掉路由
pushNamed //压入一个路由
popAndPushNamed//跳到已在堆栈内的某个路由
pop//返回上一页
Navigator.of(context).pushNamed('/register'); //写法一
Navigator.pushReplacementNamed(context, '/register'); //写法二