mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
Compare commits
3 commits
c520845f4c
...
5c858aad02
Author | SHA1 | Date | |
---|---|---|---|
|
5c858aad02 | ||
|
c4ee1fa777 | ||
|
e0320b6704 |
1 changed files with 3 additions and 3 deletions
|
@ -115,7 +115,7 @@ void main() {
|
||||||
IAPProviders(
|
IAPProviders(
|
||||||
sharedPreferences: _MockSharedPreferences(),
|
sharedPreferences: _MockSharedPreferences(),
|
||||||
child: EquipmentProfiles(
|
child: EquipmentProfiles(
|
||||||
selected: _mockEquipmentProfiles[1],
|
selected: _mockEquipmentProfiles[0],
|
||||||
values: _mockEquipmentProfiles,
|
values: _mockEquipmentProfiles,
|
||||||
child: Films(
|
child: Films(
|
||||||
selected: const Film('Ilford HP5+', 400),
|
selected: const Film('Ilford HP5+', 400),
|
||||||
|
@ -264,12 +264,12 @@ final _mockEquipmentProfiles = [
|
||||||
name: 'Praktica + Zenitar',
|
name: 'Praktica + Zenitar',
|
||||||
apertureValues: ApertureValue.values.sublist(
|
apertureValues: ApertureValue.values.sublist(
|
||||||
ApertureValue.values.indexOf(const ApertureValue(1.7, StopType.half)),
|
ApertureValue.values.indexOf(const ApertureValue(1.7, StopType.half)),
|
||||||
ApertureValue.values.indexOf(const ApertureValue(16, StopType.full)),
|
ApertureValue.values.indexOf(const ApertureValue(16, StopType.full)) + 1,
|
||||||
),
|
),
|
||||||
ndValues: NdValue.values.sublist(0, 3),
|
ndValues: NdValue.values.sublist(0, 3),
|
||||||
shutterSpeedValues: ShutterSpeedValue.values.sublist(
|
shutterSpeedValues: ShutterSpeedValue.values.sublist(
|
||||||
ShutterSpeedValue.values.indexOf(const ShutterSpeedValue(1000, true, StopType.full)),
|
ShutterSpeedValue.values.indexOf(const ShutterSpeedValue(1000, true, StopType.full)),
|
||||||
ShutterSpeedValue.values.indexOf(const ShutterSpeedValue(16, false, StopType.full)),
|
ShutterSpeedValue.values.indexOf(const ShutterSpeedValue(16, false, StopType.full)) + 1,
|
||||||
),
|
),
|
||||||
isoValues: const [
|
isoValues: const [
|
||||||
IsoValue(50, StopType.full),
|
IsoValue(50, StopType.full),
|
||||||
|
|
Loading…
Reference in a new issue