Flutter 路由 Navigator基本使用

返回到上一个界面

Navigator.pop(context);

返回到上一个界面 并且传参

Navigator.pop(context, "TestRooterPage 返回并传值");

push 到界面TestRooterPage并且传参TestRooter

import 'package:flutter/services.dart';

   void _pushFlutterPage() async {
    String result = await Navigator.push(context,
        new MaterialPageRoute(
            builder: (context) => new TestRooterPage("TestRooter")
        )
    );
// result是pop回来的结果
    if (result != null) {
// import 'package:bot_toast/bot_toast.dart';
      BotToast.showText(text: result);
    }
  }

路由 push到界面TestRooterPage并传参

    Navigator.of(context).pushNamed('/TestRooterPage', arguments: {
      "title": "23",
    });

路由传参到界面TestRooterPage 取参数方法

  @override
  Widget build(BuildContext context) {
    dynamic obj = ModalRoute.of(context).settings.arguments;
    if (obj != null) {
      this.title = obj["title"];
    }
    return Scaffold(
    );
  }
}

路由push到界面TestRooterPage之后 返回传传参使用then

    Navigator.of(context).pushNamed('/TestRooterPage').then((value) {
      if (value != null) {
        BotToast.showText(text: value);
      }
    });

跳转之后不能返回

    Navigator.of(context).pushNamedAndRemoveUntil('/TestRooterPage', (Route<dynamic> route) => false);

TestRooterPage代码

import 'package:flutter/services.dart';
import 'package:flutter/material.dart';
import 'package:bot_toast/bot_toast.dart';

class TestRooterPage extends StatelessWidget {

  String title;
  TestRooterPage(this.title);

  @override
  Widget build(BuildContext context) {
    dynamic obj = ModalRoute.of(context).settings.arguments;
    if (obj != null) {
      this.title = obj["title"];
    }
    return Scaffold(
      appBar: AppBar(
        title: Text(this.title),
      ),
      body: Center(
        child: Column(
          children: <Widget>[
            Text(this.title),
            MaterialButton(
              color: Colors.blue,
              textColor: Colors.white,
              child: new Text('跳转Flutter界面'),
              onPressed: () {
                Navigator.pop(context, "TestRooterPage 返回并传值");
              },
            )
          ],
        ),
      ),
    );
  }
}
import 'package:flutter/services.dart';
import 'package:flutter/material.dart';
import 'package:bot_toast/bot_toast.dart';
import 'Test/TestRooterPage.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return BotToastInit(
      child: MaterialApp(
        title: 'Flutter Demo',
        theme: ThemeData(
          primarySwatch: Colors.blue,
        ),
        navigatorObservers: [BotToastNavigatorObserver()],
        home: MyHomePage(title: '12'),
        routes: <String, WidgetBuilder> {
          '/HomePage': (BuildContext context) => new MyApp(),
          '/TestRooterPage' : (BuildContext context) => new TestRooterPage("TestRooter"),
        },
      ),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;
  String _textString = "00";

  void _incrementCounter() {
    setState(() {
      _counter++;
    });
  }

  // 创建一个给native的channel (类似iOS的通知)
  static const MethodChannel methodChannel =
      MethodChannel('jianan.YYFramework/test');

  _iOSPushToVC() async {
    await methodChannel.invokeMethod('FlutterPopIOS', '参数');
  }

  void _backAction() {
    _iOSPushToVC();
  }

  void _pushIOSNewVC() async {
    Map<String, dynamic> map = {
      "code": "200",
      "data": [1, 2, 3]
    };

    await methodChannel.invokeMethod('FlutterCickedActionPushIOSNewVC', map);
  }

  Future<void> _FlutterGetIOSArguments(para) async {
    BotToast.showText(text: "_FlutterGetIOSArguments");
    try {
      final result =
          await methodChannel.invokeMethod('FlutterGetIOSArguments', para);

      BotToast.showText(text: result["a"]);
      _textString = result["a"];
    } on PlatformException catch (error) {
      print(error);
    }
  }

  void _pushFlutterPage() async {
    // Navigator
//    String result = await Navigator.push(context,
//        new MaterialPageRoute(
//            builder: (context) => new TestRooterPage("TestRooter")
//        )
//    );
//    
//    if (result != null) {
//      BotToast.showText(text: result);
//    }

    // 路由
    Navigator.of(context).pushNamed('/TestRooterPage', arguments: {
      "title": "23",
    });
//    Navigator.of(context).pushNamed('/TestRooterPage').then((value) {
//      if (value != null) {
//        BotToast.showText(text: value);
//      }
//    });
    // 跳转之后不能返回
//    Navigator.of(context).pushNamedAndRemoveUntil('/TestRooterPage', (Route<dynamic> route) => false);
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'You have pushed the button this many times1:',
            ),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.display1,
            ),
            Text("iOS传值给Flutter:"),
            Text(_textString),
            MaterialButton(
              color: Colors.blue,
              textColor: Colors.white,
              child: new Text('返回到原生界面-有传值'),
              onPressed: () {
                _backAction();
              },
            ),
            MaterialButton(
              color: Colors.blue,
              textColor: Colors.white,
              child: new Text('跳转到一个新的原生界面'),
              onPressed: () {
                _pushIOSNewVC();
              },
            ),
            MaterialButton(
              color: Colors.blue,
              textColor: Colors.white,
              child: new Text('iOS传值给Flutter'),
              onPressed: () {
                _FlutterGetIOSArguments("iOS传值给Flutter");
              },
            ),
            MaterialButton(
              color: Colors.blue,
              textColor: Colors.white,
              child: new Text('跳转Flutter界面'),
              onPressed: () {
                _pushFlutterPage();
              },
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}


©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,099评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,828评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,540评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,848评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,971评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,132评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,193评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,934评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,376评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,687评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,846评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,537评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,175评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,887评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,134评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,674评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,741评论 2 351

推荐阅读更多精彩内容

  • 没有注释的代码不是好代码 没有demo的博客不是好博客 本博客代码请移步github 什么是路由管理 Flutte...
    缘焕阅读 3,543评论 0 1
  • 这章来聊聊flutter的路由管理,也可以理解为页面导航,用来处理页面之间的跳转、参数传递、动画展示等功能。 路由...
    风少侠阅读 5,168评论 1 12
  • 概要 64学时 3.5学分 章节安排 电子商务网站概况 HTML5+CSS3 JavaScript Node 电子...
    阿啊阿吖丁阅读 9,157评论 0 3
  • 有爱便有一切。有爱,就有温暖,有依靠,有了目标和向往,有了追求心灵更高层次的自信和底气,爱是正大无私的奉献,爱是世...
    凡诚_5c20阅读 250评论 0 1
  • 几个月前的某天下午,下班经过宜园路,见一妇女衣衫褴褛,满身黝黑,大汗淋漓的躺在法院大门旁,身下垫一麻袋,旁若无人的...
    林无叶阅读 427评论 0 0