作者 | 弗拉德
起源 | 弗拉德(公众号:fulade_me)

路由

在挪动开发中,咱们管页面之间的跳转叫做路由。在iOS中指的就是ViewController之间的跳转,在Android中就是Activity之间的跳转。路由是在挪动端开发中十分重要的概念,它负责管理着各个页面之间的跳转还有传值工作,是必不可缺少的控件。

路由Map

为了不便咱们治理跳转页面,Flutter为咱们 提供了路由Map。
路由Map由在main.dart文件外面MaterialApp的参数routes治理,routes参数接管一个Map,Map外面就是咱们我的项目的路由Map,你能够关上我的我的项目看到routes参数如下:

routes: {  "/": (context) => MainPage(),  "TextDemoPage": (context) => TextDemoPage(),  "RaisedButtonDemoPage": (context) => RaisedButtonDemoPage(),  "FlatButtonDemoPage": (context) => FlatButtonDemoPage(),  "OutlineButtonDemoePage": (context) => OutlineButtonDemoePage(),  "IconButtonDemoPage": (context) => IconButtonDemoPage(),  "ContainerDemoPage": (context) => ContainerDemoPage(),  "StatefulWidgetDemoPage": (context) => StatefulWidgetDemoPage(),  "TextFieldDemoPage": (context) => TextFieldDemoPage(),  "ImageDemoPage": (context) => ImageDemoPage(),  "ColumnDemoPage": (context) => ColumnDemoPage(),  "RowDemoPage": (context) => RowDemoPage(),  "FlexibleDemoPage": (context) => FlexibleDemoPage(),  "WrapDemoPage": (context) => WrapDemoPage(),  "ListViewDemoPage": (context) => ListViewDemoPage(),  "GridViewDemoPage": (context) => GridViewDemoPage(),  "BottomNavigationBarDemoPage": (context) =>      BottomNavigationBarDemoPage(),  "RouterDemoPage": (context) => RouterDemoPage(),  "RouterDemoPage2": (context) => RouterDemoPage2(),},

其中key/对应的Value是整个Flutter我的项目的入口页面,这里须要另外一个很重要的参数initialRoute来配合应用
咱们给initialRoute参数传值如下:

    initialRoute: "/",

这里示意的是Flutter我的项目的入口页面对应的key/,那么就会找到在routes/对应的页面,也就是MainPage()

须要留神的是:
默认咱们新创建的Flutter我的项目中MaterialApp是带有home这个参数的,它也示意也是入口页面。如果咱们想要要应用路由Map的形式来治理路由,肯定须要把home参数删除掉。

Navigator.pushNamed

在咱们申明好路由Map之后,咱们就能够传入后面的key的值来实现页面的跳转工作,这个时候咱们须要借助的API是Navigator.pushNamed

 @optionalTypeArgs  static Future<T> pushNamed<T extends Object>(    BuildContext context,    /// context    String routeName, {     /// 路由Map中 key 的值    Object arguments,        /// 参数   }) {    return Navigator.of(context).pushNamed<T>(routeName, arguments: arguments);  }

只须要传入路由Map中key的值就能够实现跳转。
代码如下:

Navigator.pushNamed(context, "RouterDemoPage2");
因为咱们是跨平台开发,Flutter帮忙咱们实现了跳转时候的转场动画,在iOS中动画是从右侧滑入到左侧,返回的时候同样是由左侧滑出到右侧。在Android则是由下方弹出显示到上方,返回的时候是由上方退出到下方弹出。

跳转传值

很多时候咱们心愿跳转的时候能够传值过来,这个时候咱们能够通过自定义MaterialPageRoute来实现传值。

MaterialPageRoute({    /// builder 办法    @required this.builder,    /// 配置信息    RouteSettings settings,    ///  默认状况下,当入栈一个新路由时,原来的路由依然会被保留在内存中,如果想在路由没用的时候开释其所占用的所有资源,能够设置maintainState为false。    this.maintainState = true,    ///  示意新页面是否是全屏展现,在iOS中,如果fullscreenDialog为true,新页面将会从屏幕底部滑入    bool fullscreenDialog = false,})

咱们只须要在构建新的页面的时候传入咱们想要传递的参数即可

Navigator.of(context).push(MaterialPageRoute(builder: (context) {  return RouterDemoPage3(passText: "Fulade");}));

返回传值

传递返回值咱们应用Navigatorpop办法即可

Navigator.pop(context, "pop value");

pop办法接管一个参数为返回的携带的参数,如果咱们有多个参数,能够把它封装为ListMap即可。

返回值咱们须要在push办法前面应用then来接管

Navigator.of(context)    .push(MaterialPageRoute(builder: (context) {  return RouterDemoPage3(passText: "Fulade");})).then((value) {  setState(() {    title = value;  });});
then函数 波及到了Dart语音中很重要的概念 await 和future,前面有机会咱们再来具体的说。

想体验以上的示例的运行成果,能够到我的Github仓库我的项目flutter_app->lib->routes->router_page.dart查看,并且能够下载下来运行并体验。