m3_lightmeter/lib/providers/remote_config_provider.dart

22 lines
679 B
Dart
Raw Normal View History

2023-10-28 20:40:56 +00:00
import 'package:flutter/material.dart';
import 'package:lightmeter/data/models/feature.dart';
import 'package:lightmeter/providers/services_provider.dart';
class RemoteConfig extends InheritedWidget {
const RemoteConfig({
super.key,
required super.child,
});
static bool isEnabled(BuildContext context, Feature feature) {
return ServicesProvider.of(context).remoteConfigService.isEnabled(feature);
}
@override
bool updateShouldNotify(RemoteConfig oldWidget) => true;
}
2023-10-28 21:27:07 +00:00
const a = """
\u2022 Equipment profiles containing filters for aperture, shutter speed, and more\n\u2022 List of films with compensation for what's known as reciprocity failure
""";