流构建器,每次当我进入使用流构建器的页面时构建小部件
我正在使用 Flutter 创建一个加密货币应用程序。所有硬币列表都出现在一个小部件(页面)中。我使用 Streams 和 Bloc 进行状态管理。价格每 10 秒更新一次。但是当我每次进入列表页面时,页面都会再次刷新。
我需要保留数据。我应该使用什么,以便当我一次又一次地访问该列表页面时,页面不会再次重新加载。
I am creating a crypto currency app using Flutter. Where all the coins list are present in one widget(page). I am using Streams and Bloc for statemanagement. price gets updated every 10sec.But when i come to the listing page every time the page gets refreshed again.
I need to retain the data. What should i use so that page doesn't reload again when i come to that listing page again and again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用AutomaticKeepAliveClientMixin 来保持状态处于活动状态
这是一个链接,您可以查看 https://flutteragency.com/how-to-solve-automatickeepaliveclientmixin-is-not-working-with-bottomnavigationbar-in-flutter/
You can use AutomaticKeepAliveClientMixin to keep your state alive
Here is a link to you can checkout https://flutteragency.com/how-to-solve-automatickeepaliveclientmixin-is-not-working-with-bottomnavigationbar-in-flutter/