有没有办法让 Riverpod 的 StreamProvider 仅在初始调用时进入加载状态?

发布于 2025-01-09 04:18:20 字数 288 浏览 0 评论 0原文

这是我想知道有一段时间的事情。当使用 {StreamProvider's name}.when 方法时,每当流发生变化时,它都会阻碍用户体验显示加载图标。

我已经可以通过使用 StreamBuilder 并使用 StreamProvider.stream 属性作为流来使其工作。这样,它只在没有数据时显示加载图标,如果新数据到达旧数据之上,它会显示旧数据,直到新数据“加载”为止。 但我发现这是一种解决方法,并且想知道是否有更干净的方法。

This is something I've wondered about for a while. It is hindering the UX to show a loading Icon whenever the stream changes when using {StreamProvider's name}.when method.

I can already make it work by using a StreamBuilder instead and using the StreamProvider's .stream property as the stream. This way, it only shows a loading icon when no data is present, and if new data arrives on top of old data, it shows the old data until the new data is "loaded".
But I find that as a workaround and was wondering if there is a cleaner way.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

∞琼窗梦回ˉ 2025-01-16 04:18:20

2.0.0 版本更新了 AsyncValue 的处理方式,使您所要求的成为新的默认行为。

您现在可以使用 flutter_riverpod: ^2.0.0-dev.0 版本进行尝试

The version 2.0.0 updates how AsyncValue is dealt with, making what you're asking the new default behaviour.

You can try it out now using version flutter_riverpod: ^2.0.0-dev.0

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文