startActivityForResult 在Flutter中等价于什么
【摘要】 Flutter中所有路由的Navigator类可用于从已经push到栈的路由中获取结果。 这可以通过等待push返回的Future来完成,也可以从then中获取返回的数据。
获取返回的数据
通过await push返回的Future完成,await必须在异步函数中完成:
() async{ Map maps = await Navigator.push( cont...
Flutter中所有路由的Navigator类可用于从已经push到栈的路由中获取结果。 这可以通过等待push返回的Future来完成,也可以从then中获取返回的数据。
获取返回的数据
- 通过await push返回的Future完成,await必须在异步函数中完成:
() async{ Map maps = await Navigator.push( context, MaterialPageRoute( builder: (context) => ProductPage({"name":"Tome"}), ), ); print(maps["name"]); },
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 从Future的then中获取
Navigator.push( context, MaterialPageRoute( builder: (context) => ProductPage({"name": "Tome"}), ), ).then((value) => {print(value["email"])});
- 1
- 2
- 3
- 4
- 5
- 6
向前返回数据
Navigator.pop(context, {"name": "Tom", "email": "tom@a3.com"});
- 1
跳转界面传参
Navigator.push( context, MaterialPageRoute( builder: (context) => ProductPage({"name": "Tome"}), ), )
- 1
- 2
- 3
- 4
- 5
- 6
完整例子
import 'package:flutter/material.dart';
void main() => runApp(new MaterialApp( title: '导航演示1', home: new MyAppHome(), ));
class MyAppHome extends StatelessWidget {
@override
Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('导航页面'), ), body: new Center( child: RaisedButton( child: Text("查看商品"), onPressed: () { Navigator.push( context, MaterialPageRoute( builder: (context) => ProductPage({"name": "Tome"}), ), ).then((value) => {print(value["email"])}); },
// onPressed: () async{
// Map maps = await Navigator.push(
// context,
// MaterialPageRoute(
// builder: (context) => ProductPage({"name":"Tome"}),
// ),
// );
// print(maps["name"]);
// }, ), ), );
}
}
class ProductPage extends StatelessWidget {
// 接受参数
final Map<String, dynamic> maps; // 接受参数
ProductPage(this.maps); @override
Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text("商品详情"), ), body: Center( child: RaisedButton( child: Text("返回"), onPressed: () { print(maps["name"]); Navigator.pop(context, {"name": "Tom", "email": "tom@a3.com"}); }, ), ), );
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
文章来源: blog.csdn.net,作者:WongKyunban,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/weixin_40763897/article/details/108177213
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)