mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
fixed tests
This commit is contained in:
parent
98c96577fb
commit
dc7adb8472
2 changed files with 6 additions and 3 deletions
|
@ -50,7 +50,11 @@ class RemoteConfigService implements IRemoteConfigService {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> fetchConfig() => FirebaseRemoteConfig.instance.fetch();
|
Future<void> fetchConfig() async {
|
||||||
|
// https://github.com/firebase/flutterfire/issues/6196#issuecomment-927751667
|
||||||
|
await Future.delayed(const Duration(seconds: 1));
|
||||||
|
await FirebaseRemoteConfig.instance.fetch();
|
||||||
|
}
|
||||||
|
|
||||||
dynamic getValue(Feature feature) => FirebaseRemoteConfig.instance.getValue(feature.name).toValue(feature);
|
dynamic getValue(Feature feature) => FirebaseRemoteConfig.instance.getValue(feature.name).toValue(feature);
|
||||||
|
|
||||||
|
|
|
@ -26,8 +26,7 @@ class RemoteConfigProviderState extends State<RemoteConfigProvider> {
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
// https://github.com/firebase/flutterfire/issues/6196#issuecomment-927751667
|
widget.remoteConfigService.fetchConfig();
|
||||||
Future.delayed(const Duration(seconds: 1)).then((_) => widget.remoteConfigService.fetchConfig());
|
|
||||||
_updatesSubscription = widget.remoteConfigService.onConfigUpdated().listen(
|
_updatesSubscription = widget.remoteConfigService.onConfigUpdated().listen(
|
||||||
_updateFeatures,
|
_updateFeatures,
|
||||||
onError: (e) => log(e.toString()),
|
onError: (e) => log(e.toString()),
|
||||||
|
|
Loading…
Reference in a new issue