gpt4 book ai didi

dart - flutter ,发送参数到前一个屏幕

转载 作者:行者123 更新时间:2023-12-03 03:26:35 25 4
gpt4 key购买 nike

我有两个屏幕A和B。单击A中的一个按钮,然后打开B屏幕。当打开B屏幕时,我选择了一些东西,然后返回到A屏幕:

      Navigator.pop(context, MaterialPageRoute(builder: (context) => A(data: data)));

但这不起作用。

如何使用流行音乐或类似内容返回上一屏的数据?

最佳答案

pop方法采用一个可选参数,您可以返回上一个屏幕。您可以这样使用它:

// In screen A:
final result = await Navigator.push(...); // Here you just push the route like normal

// In screen B:
Navigator.pop(context, data); // Where data is whatever you want to return to screen A

在上面的示例中, result将包含您从屏幕B返回的任何内容

关于dart - flutter ,发送参数到前一个屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52467269/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com