mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
cc9f162933
* added stub `FilmsProvider` * moved dialogs to the shared folder * typo * separated `EquipmentSettingsSection` * copy * `IAPBuilder` -> `IAPListTile` * moved `Film` to resources repo * fixed films selection * untied iso and selected film * removed film from exposure pairs building * indicate push/pull * copy * Update .gitignore * fixed extreme exposure pairs reciprocity display * sync with iap changes * sync iap stub with iap changes * added reciprocity description * added workspace file * Update .gitignore
34 lines
912 B
Dart
34 lines
912 B
Dart
library m3_lightmeter_iap;
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:m3_lightmeter_iap/src/providers/equipment_profile_provider.dart';
|
|
import 'package:m3_lightmeter_iap/src/providers/films_provider.dart';
|
|
import 'package:m3_lightmeter_iap/src/providers/iap_products_provider.dart';
|
|
|
|
export 'src/data/models/iap_product.dart';
|
|
|
|
export 'src/providers/equipment_profile_provider.dart';
|
|
export 'src/providers/films_provider.dart';
|
|
export 'src/providers/iap_products_provider.dart';
|
|
|
|
class IAPProviders extends StatelessWidget {
|
|
final Object sharedPreferences;
|
|
final Widget child;
|
|
|
|
const IAPProviders({
|
|
required this.sharedPreferences,
|
|
required this.child,
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return IAPProductsProvider(
|
|
child: FilmsProvider(
|
|
child: EquipmentProfileProvider(
|
|
child: child,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|