有没有办法让 Riverpod 的 StreamProvider 仅在初始调用时进入加载状态?
这是我想知道有一段时间的事情。当使用 {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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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