我如何使用firebase远程配置作为一个流?在Flutter中。什么是最好的方法?
uemypmqf1#
我建议使用StreamBuilder微件
StreamBuilder( stream: FirebaseRemoteConfig.instance.getValue("something").asStream(), builder: (context, AsyncSnapshot<RemoteConfigValue> snapshot) { if (snapshot.hasData) { return SomeWidget(....
1条答案
按热度按时间uemypmqf1#
我建议使用StreamBuilder微件