弹出特定路线,导致自动路线抖动
我使用 auto_route 作为我的应用程序的导航系统。我需要在 android 活动中执行类似于 finish()
函数的操作,该函数会关闭正在调用它的当前活动。我怎样才能在颤振中实现这一目标?
I'm using auto_route as my app's navigation system. I need to do something like the finish()
function in android activity which closes the current activity that it's being called from. How can I achieve this in flutter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从现在 7.8.2 起不再是这种情况
返回的类型在 Routepage 注释上定义
所以这样定义
This is no longer the case as of now 7.8.2
The returned type is defined on the Routepage annotation
So define it this way
如此处所示:
在路由器配置中指定哪种数据类型被返回。
例如:(这里返回一个集合)
在您的页面中,您必须弹出值:
然后在您的代码中您可以调用它来推送页面并使用返回值。
As shown here:
In your router config specify which data type is returned.
e.g.: (here a Set is returned)
In your Page, you have to pop the values:
Then in your code you can call this to push the page and work with the return value.