小编典典

带有返回数据的Flutter Back按钮

flutter

我有一个带有两个按钮的界面,这些按钮会弹出并返回true或false,如下所示:

onPressed: () => Navigator.pop(context, false)

我需要调整应用栏中的后退按钮,因此它会弹出并返回false。有没有办法做到这一点?


阅读 501

收藏
2020-08-13

共1个答案

小编典典

这可能对您有帮助并为您工作

第一屏

void goToSecondScreen()async {
 var result = await Navigator.push(_context, new MaterialPageRoute(
 builder: (BuildContext context) => new SecondScreen(context),
 fullscreenDialog: true,)
);

Scaffold.of(_context).showSnackBar(SnackBar(content: Text("$result"),duration: Duration(seconds: 3),));
}

第二屏

Navigator.pop(context, "Hello world");
2020-08-13