mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-07-07 06:30:42 +00:00
Compare commits
3 commits
4201d36abb
...
1be7c3be48
Author | SHA1 | Date | |
---|---|---|---|
![]() |
1be7c3be48 | ||
![]() |
8415f4e515 | ||
![]() |
cf4373d854 |
10 changed files with 122 additions and 118 deletions
|
@ -36,6 +36,7 @@
|
||||||
"lightSensor": "Light sensor",
|
"lightSensor": "Light sensor",
|
||||||
"meteringScreenLayout": "Metering screen layout",
|
"meteringScreenLayout": "Metering screen layout",
|
||||||
"meteringScreenLayoutHint": "Hide elements on the metering screen that you don't need so that they don't waste exposure pairs list space.",
|
"meteringScreenLayoutHint": "Hide elements on the metering screen that you don't need so that they don't waste exposure pairs list space.",
|
||||||
|
"meteringScreenLayoutHintEquipmentProfiles": "Equipment profile picker",
|
||||||
"meteringScreenFeatureExtremeExposurePairs": "Fastest & shortest exposure pairs",
|
"meteringScreenFeatureExtremeExposurePairs": "Fastest & shortest exposure pairs",
|
||||||
"meteringScreenFeatureFilmPicker": "Film picker",
|
"meteringScreenFeatureFilmPicker": "Film picker",
|
||||||
"meteringScreenFeatureHistogram": "Histogram",
|
"meteringScreenFeatureHistogram": "Histogram",
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
"lightSensor": "Capteur de lumière",
|
"lightSensor": "Capteur de lumière",
|
||||||
"meteringScreenLayout": "Disposition de l'écran de mesure",
|
"meteringScreenLayout": "Disposition de l'écran de mesure",
|
||||||
"meteringScreenLayoutHint": "Masquer les éléments sur l'écran de mesure dont vous n'avez pas besoin pour qu'ils ne gaspillent pas de l'espace dans les paires d'exposition.",
|
"meteringScreenLayoutHint": "Masquer les éléments sur l'écran de mesure dont vous n'avez pas besoin pour qu'ils ne gaspillent pas de l'espace dans les paires d'exposition.",
|
||||||
|
"meteringScreenLayoutHintEquipmentProfiles": "Sélecteur de profil de l'équipement",
|
||||||
"meteringScreenFeatureExtremeExposurePairs": "Paires d'exposition les plus rapides et les plus courtes",
|
"meteringScreenFeatureExtremeExposurePairs": "Paires d'exposition les plus rapides et les plus courtes",
|
||||||
"meteringScreenFeatureFilmPicker": "Sélecteur de film",
|
"meteringScreenFeatureFilmPicker": "Sélecteur de film",
|
||||||
"meteringScreenFeatureHistogram": "Histogramme",
|
"meteringScreenFeatureHistogram": "Histogramme",
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
"lightSensor": "Датчик освещённости",
|
"lightSensor": "Датчик освещённости",
|
||||||
"meteringScreenLayout": "Элементы главного экрана",
|
"meteringScreenLayout": "Элементы главного экрана",
|
||||||
"meteringScreenLayoutHint": "Здесь вы можете скрыть некоторые ненужные или неиспользуемые элементы с главного экрана.",
|
"meteringScreenLayoutHint": "Здесь вы можете скрыть некоторые ненужные или неиспользуемые элементы с главного экрана.",
|
||||||
|
"meteringScreenLayoutHintEquipmentProfiles": "Выбор профиля оборудования",
|
||||||
"meteringScreenFeatureExtremeExposurePairs": "Длинная и короткая выдержки",
|
"meteringScreenFeatureExtremeExposurePairs": "Длинная и короткая выдержки",
|
||||||
"meteringScreenFeatureFilmPicker": "Выбор пленки",
|
"meteringScreenFeatureFilmPicker": "Выбор пленки",
|
||||||
"meteringScreenFeatureHistogram": "Гистограмма",
|
"meteringScreenFeatureHistogram": "Гистограмма",
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
"lightSensor": "光传感器",
|
"lightSensor": "光传感器",
|
||||||
"meteringScreenLayout": "布局",
|
"meteringScreenLayout": "布局",
|
||||||
"meteringScreenLayoutHint": "隐藏不需要的元素,以免浪费曝光列表空间",
|
"meteringScreenLayoutHint": "隐藏不需要的元素,以免浪费曝光列表空间",
|
||||||
|
"meteringScreenLayoutHintEquipmentProfiles": "设备配置选择",
|
||||||
"meteringScreenFeatureExtremeExposurePairs": "最快 & 最慢曝光组合",
|
"meteringScreenFeatureExtremeExposurePairs": "最快 & 最慢曝光组合",
|
||||||
"meteringScreenFeatureFilmPicker": "胶片选择",
|
"meteringScreenFeatureFilmPicker": "胶片选择",
|
||||||
"meteringScreenFeatureHistogram": "直方图",
|
"meteringScreenFeatureHistogram": "直方图",
|
||||||
|
|
|
@ -31,10 +31,23 @@ class MeteringTopBarShape extends CustomPainter {
|
||||||
@override
|
@override
|
||||||
void paint(Canvas canvas, Size size) {
|
void paint(Canvas canvas, Size size) {
|
||||||
final paint = Paint()..color = color;
|
final paint = Paint()..color = color;
|
||||||
final path = Path();
|
late final Path path;
|
||||||
const circularRadius = Radius.circular(Dimens.borderRadiusL);
|
|
||||||
if (appendixHeight == 0 || appendixWidth == 0) {
|
if (appendixHeight == 0 || appendixWidth == 0) {
|
||||||
path.addRRect(
|
path = _drawNoAppendix(size, Dimens.borderRadiusL);
|
||||||
|
} else if (appendixHeight < 0) {
|
||||||
|
path = _drawAppendixOnLeft(size, Dimens.borderRadiusL);
|
||||||
|
canvas.scale(-1, 1);
|
||||||
|
canvas.translate(-size.width, 0);
|
||||||
|
} else {
|
||||||
|
path = _drawAppendixOnLeft(size, Dimens.borderRadiusL);
|
||||||
|
}
|
||||||
|
canvas.drawPath(path, paint);
|
||||||
|
}
|
||||||
|
|
||||||
|
Path _drawNoAppendix(Size size, double bottomRadius) {
|
||||||
|
final circularRadius = Radius.circular(bottomRadius);
|
||||||
|
return Path()
|
||||||
|
..addRRect(
|
||||||
RRect.fromLTRBAndCorners(
|
RRect.fromLTRBAndCorners(
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
@ -43,73 +56,51 @@ class MeteringTopBarShape extends CustomPainter {
|
||||||
bottomLeft: circularRadius,
|
bottomLeft: circularRadius,
|
||||||
bottomRight: circularRadius,
|
bottomRight: circularRadius,
|
||||||
),
|
),
|
||||||
);
|
)
|
||||||
} else if (appendixHeight < 0) {
|
..close();
|
||||||
// Left side with bottom corner
|
}
|
||||||
path.lineTo(0, size.height + appendixHeight - Dimens.borderRadiusL);
|
|
||||||
path.arcToPoint(
|
|
||||||
Offset(Dimens.borderRadiusL, size.height + appendixHeight),
|
|
||||||
radius: circularRadius,
|
|
||||||
clockwise: false,
|
|
||||||
);
|
|
||||||
|
|
||||||
// Bottom side with step
|
Path _drawAppendixOnLeft(Size size, double bottomRadius) {
|
||||||
final allowedRadius = min(appendixHeight.abs() / 2, Dimens.borderRadiusL);
|
final path = Path();
|
||||||
path.lineTo(appendixWidth - allowedRadius, size.height + appendixHeight);
|
final circularRadius = Radius.circular(bottomRadius);
|
||||||
path.arcToPoint(
|
final appendixHeight = this.appendixHeight.abs();
|
||||||
Offset(appendixWidth, size.height + appendixHeight + allowedRadius),
|
|
||||||
radius: circularRadius,
|
|
||||||
);
|
|
||||||
path.lineTo(appendixWidth, size.height - allowedRadius);
|
|
||||||
path.arcToPoint(
|
|
||||||
Offset(appendixWidth + allowedRadius, size.height),
|
|
||||||
radius: circularRadius,
|
|
||||||
clockwise: false,
|
|
||||||
);
|
|
||||||
|
|
||||||
// Right side with bottom corner
|
// Left side with bottom corner
|
||||||
path.lineTo(size.width - Dimens.borderRadiusL, size.height);
|
path.lineTo(0, size.height - bottomRadius);
|
||||||
path.arcToPoint(
|
path.arcToPoint(
|
||||||
Offset(size.width, size.height - Dimens.borderRadiusL),
|
Offset(bottomRadius, size.height),
|
||||||
radius: circularRadius,
|
radius: circularRadius,
|
||||||
clockwise: false,
|
clockwise: false,
|
||||||
);
|
);
|
||||||
} else {
|
|
||||||
// Left side with bottom corner
|
|
||||||
path.lineTo(0, size.height - Dimens.borderRadiusL);
|
|
||||||
path.arcToPoint(
|
|
||||||
Offset(Dimens.borderRadiusL, size.height),
|
|
||||||
radius: circularRadius,
|
|
||||||
clockwise: false,
|
|
||||||
);
|
|
||||||
|
|
||||||
// Bottom side with step
|
// Bottom side with step
|
||||||
final allowedRadius = min(appendixHeight.abs() / 2, Dimens.borderRadiusL);
|
final allowedRadius = min(appendixHeight.abs() / 2, bottomRadius);
|
||||||
path.relativeLineTo(appendixWidth - allowedRadius * 2, 0);
|
path.lineTo(appendixWidth - allowedRadius, size.height);
|
||||||
path.relativeArcToPoint(
|
path.arcToPoint(
|
||||||
Offset(allowedRadius, -allowedRadius),
|
Offset(appendixWidth, size.height - allowedRadius),
|
||||||
radius: Radius.circular(allowedRadius),
|
radius: Radius.circular(allowedRadius),
|
||||||
rotation: 90,
|
rotation: 90,
|
||||||
clockwise: false,
|
clockwise: false,
|
||||||
);
|
);
|
||||||
path.relativeLineTo(0, -appendixHeight + allowedRadius * 2);
|
path.lineTo(appendixWidth, size.height - appendixHeight + allowedRadius);
|
||||||
path.relativeArcToPoint(
|
path.arcToPoint(
|
||||||
Offset(allowedRadius, -allowedRadius),
|
Offset(appendixWidth + allowedRadius, size.height - appendixHeight),
|
||||||
radius: Radius.circular(allowedRadius),
|
radius: Radius.circular(allowedRadius),
|
||||||
rotation: 90,
|
rotation: 90,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Right side with bottom corner
|
||||||
|
path.lineTo(size.width - bottomRadius, size.height - appendixHeight);
|
||||||
|
path.arcToPoint(
|
||||||
|
Offset(size.width, size.height - appendixHeight - bottomRadius),
|
||||||
|
radius: circularRadius,
|
||||||
|
clockwise: false,
|
||||||
|
);
|
||||||
|
|
||||||
// Right side with bottom corner
|
|
||||||
path.lineTo(size.width - Dimens.borderRadiusL, size.height - appendixHeight);
|
|
||||||
path.arcToPoint(
|
|
||||||
Offset(size.width, size.height - appendixHeight - Dimens.borderRadiusL),
|
|
||||||
radius: circularRadius,
|
|
||||||
clockwise: false,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
path.lineTo(size.width, 0);
|
path.lineTo(size.width, 0);
|
||||||
path.close();
|
path.close();
|
||||||
canvas.drawPath(path, paint);
|
|
||||||
|
return path;
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|
|
@ -20,9 +20,7 @@ class MeteringTopBar extends StatelessWidget {
|
||||||
return CustomPaint(
|
return CustomPaint(
|
||||||
painter: MeteringTopBarShape(
|
painter: MeteringTopBarShape(
|
||||||
color: Theme.of(context).colorScheme.surface,
|
color: Theme.of(context).colorScheme.surface,
|
||||||
appendixWidth: appendixHeight > 0
|
appendixWidth: MediaQuery.of(context).size.width / 2 - Dimens.grid8 / 2 + Dimens.paddingM,
|
||||||
? MediaQuery.of(context).size.width / 2 - Dimens.grid8 + Dimens.paddingM
|
|
||||||
: MediaQuery.of(context).size.width / 2 + Dimens.grid8 - Dimens.paddingM,
|
|
||||||
appendixHeight: appendixHeight,
|
appendixHeight: appendixHeight,
|
||||||
),
|
),
|
||||||
child: Padding(
|
child: Padding(
|
||||||
|
|
|
@ -22,15 +22,15 @@ class AnimatedDialog extends StatefulWidget {
|
||||||
class AnimatedDialogState extends State<AnimatedDialog> with SingleTickerProviderStateMixin {
|
class AnimatedDialogState extends State<AnimatedDialog> with SingleTickerProviderStateMixin {
|
||||||
final GlobalKey _key = GlobalKey();
|
final GlobalKey _key = GlobalKey();
|
||||||
|
|
||||||
late final Size _closedSize;
|
late Size _closedSize;
|
||||||
late final Offset _closedOffset;
|
late Offset _closedOffset;
|
||||||
|
|
||||||
late final AnimationController _animationController;
|
late final AnimationController _animationController;
|
||||||
late final CurvedAnimation _defaultCurvedAnimation;
|
late final CurvedAnimation _defaultCurvedAnimation;
|
||||||
late final Animation<Color?> _barrierColorAnimation;
|
late final Animation<Color?> _barrierColorAnimation;
|
||||||
late final SizeTween _sizeTween;
|
late SizeTween _sizeTween;
|
||||||
late final Animation<Size?> _sizeAnimation;
|
late Animation<Size?> _sizeAnimation;
|
||||||
late final Animation<Size?> _offsetAnimation;
|
late Animation<Size?> _offsetAnimation;
|
||||||
late final Animation<double> _borderRadiusAnimation;
|
late final Animation<double> _borderRadiusAnimation;
|
||||||
late final Animation<double> _closedOpacityAnimation;
|
late final Animation<double> _closedOpacityAnimation;
|
||||||
late final Animation<double> _openedOpacityAnimation;
|
late final Animation<double> _openedOpacityAnimation;
|
||||||
|
@ -88,35 +88,7 @@ class AnimatedDialogState extends State<AnimatedDialog> with SingleTickerProvide
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
_setClosedOffset();
|
||||||
final mediaQuery = MediaQuery.of(context);
|
|
||||||
|
|
||||||
_closedSize = _key.currentContext!.size!;
|
|
||||||
_sizeTween = SizeTween(
|
|
||||||
begin: _closedSize,
|
|
||||||
end: widget.openedSize ??
|
|
||||||
Size(
|
|
||||||
mediaQuery.size.width -
|
|
||||||
mediaQuery.padding.horizontal -
|
|
||||||
Dimens.dialogMargin.horizontal,
|
|
||||||
mediaQuery.size.height - mediaQuery.padding.vertical - Dimens.dialogMargin.vertical,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
_sizeAnimation = _sizeTween.animate(_defaultCurvedAnimation);
|
|
||||||
|
|
||||||
final renderBox = _key.currentContext!.findRenderObject()! as RenderBox;
|
|
||||||
_closedOffset = renderBox.localToGlobal(Offset.zero);
|
|
||||||
_offsetAnimation = SizeTween(
|
|
||||||
begin: Size(
|
|
||||||
_closedOffset.dx + _closedSize.width / 2,
|
|
||||||
_closedOffset.dy + _closedSize.height / 2,
|
|
||||||
),
|
|
||||||
end: Size(
|
|
||||||
mediaQuery.size.width / 2,
|
|
||||||
mediaQuery.size.height / 2 + mediaQuery.padding.top / 2 - mediaQuery.padding.bottom / 2,
|
|
||||||
),
|
|
||||||
).animate(_defaultCurvedAnimation);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
@ -133,6 +105,12 @@ class AnimatedDialogState extends State<AnimatedDialog> with SingleTickerProvide
|
||||||
).animate(_defaultCurvedAnimation);
|
).animate(_defaultCurvedAnimation);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void didUpdateWidget(covariant AnimatedDialog oldWidget) {
|
||||||
|
super.didUpdateWidget(oldWidget);
|
||||||
|
_setClosedOffset();
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void dispose() {
|
void dispose() {
|
||||||
_animationController.dispose();
|
_animationController.dispose();
|
||||||
|
@ -151,6 +129,38 @@ class AnimatedDialogState extends State<AnimatedDialog> with SingleTickerProvide
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void _setClosedOffset() {
|
||||||
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
|
final renderBox = _key.currentContext?.findRenderObject()! as RenderBox?;
|
||||||
|
if (renderBox != null) {
|
||||||
|
final size = MediaQuery.sizeOf(context);
|
||||||
|
final padding = MediaQuery.paddingOf(context);
|
||||||
|
_closedSize = _key.currentContext!.size!;
|
||||||
|
_sizeTween = SizeTween(
|
||||||
|
begin: _closedSize,
|
||||||
|
end: widget.openedSize ??
|
||||||
|
Size(
|
||||||
|
size.width - padding.horizontal - Dimens.dialogMargin.horizontal,
|
||||||
|
size.height - padding.vertical - Dimens.dialogMargin.vertical,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
_sizeAnimation = _sizeTween.animate(_defaultCurvedAnimation);
|
||||||
|
|
||||||
|
_closedOffset = renderBox.localToGlobal(Offset.zero);
|
||||||
|
_offsetAnimation = SizeTween(
|
||||||
|
begin: Size(
|
||||||
|
_closedOffset.dx + _closedSize.width / 2,
|
||||||
|
_closedOffset.dy + _closedSize.height / 2,
|
||||||
|
),
|
||||||
|
end: Size(
|
||||||
|
size.width / 2,
|
||||||
|
size.height / 2 + padding.top / 2 - padding.bottom / 2,
|
||||||
|
),
|
||||||
|
).animate(_defaultCurvedAnimation);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
void _openDialog() {
|
void _openDialog() {
|
||||||
Navigator.of(context).push(
|
Navigator.of(context).push(
|
||||||
PageRouteBuilder(
|
PageRouteBuilder(
|
||||||
|
|
|
@ -84,15 +84,7 @@ class _InheritedListeners extends StatelessWidget {
|
||||||
context.read<MeteringBloc>().add(const FilmChangedEvent(Film.other()));
|
context.read<MeteringBloc>().add(const FilmChangedEvent(Film.other()));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
child: MeteringScreenLayoutFeatureListener(
|
child: child,
|
||||||
feature: MeteringScreenLayoutFeature.equipmentProfiles,
|
|
||||||
onDidChangeDependencies: (value) {
|
|
||||||
if (!value) {
|
|
||||||
EquipmentProfileProvider.of(context).setProfile(EquipmentProfiles.of(context).first);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
child: child,
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@ import 'package:lightmeter/data/models/metering_screen_layout_config.dart';
|
||||||
import 'package:lightmeter/generated/l10n.dart';
|
import 'package:lightmeter/generated/l10n.dart';
|
||||||
import 'package:lightmeter/providers/user_preferences_provider.dart';
|
import 'package:lightmeter/providers/user_preferences_provider.dart';
|
||||||
import 'package:lightmeter/res/dimens.dart';
|
import 'package:lightmeter/res/dimens.dart';
|
||||||
|
import 'package:m3_lightmeter_iap/m3_lightmeter_iap.dart';
|
||||||
|
|
||||||
class MeteringScreenLayoutFeaturesDialog extends StatefulWidget {
|
class MeteringScreenLayoutFeaturesDialog extends StatefulWidget {
|
||||||
const MeteringScreenLayoutFeaturesDialog({super.key});
|
const MeteringScreenLayoutFeaturesDialog({super.key});
|
||||||
|
@ -25,18 +26,23 @@ class _MeteringScreenLayoutFeaturesDialogState extends State<MeteringScreenLayou
|
||||||
contentPadding: EdgeInsets.zero,
|
contentPadding: EdgeInsets.zero,
|
||||||
content: SizedBox(
|
content: SizedBox(
|
||||||
width: double.maxFinite,
|
width: double.maxFinite,
|
||||||
child: ListView(
|
child: Column(
|
||||||
shrinkWrap: true,
|
mainAxisSize: MainAxisSize.min,
|
||||||
children: [
|
children: [
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: Dimens.paddingL),
|
padding: const EdgeInsets.symmetric(horizontal: Dimens.paddingL),
|
||||||
child: Text(S.of(context).meteringScreenLayoutHint),
|
child: Text(S.of(context).meteringScreenLayoutHint),
|
||||||
),
|
),
|
||||||
const SizedBox(height: Dimens.grid16),
|
const SizedBox(height: Dimens.grid16),
|
||||||
_featureListTile(MeteringScreenLayoutFeature.equipmentProfiles),
|
ListView(
|
||||||
_featureListTile(MeteringScreenLayoutFeature.extremeExposurePairs),
|
shrinkWrap: true,
|
||||||
_featureListTile(MeteringScreenLayoutFeature.filmPicker),
|
children: [
|
||||||
_featureListTile(MeteringScreenLayoutFeature.histogram),
|
_featureListTile(MeteringScreenLayoutFeature.equipmentProfiles),
|
||||||
|
_featureListTile(MeteringScreenLayoutFeature.extremeExposurePairs),
|
||||||
|
_featureListTile(MeteringScreenLayoutFeature.filmPicker),
|
||||||
|
_featureListTile(MeteringScreenLayoutFeature.histogram),
|
||||||
|
],
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -48,6 +54,9 @@ class _MeteringScreenLayoutFeaturesDialogState extends State<MeteringScreenLayou
|
||||||
),
|
),
|
||||||
TextButton(
|
TextButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
|
if (!_features[MeteringScreenLayoutFeature.equipmentProfiles]!) {
|
||||||
|
EquipmentProfileProvider.of(context).setProfile(EquipmentProfiles.of(context).first);
|
||||||
|
}
|
||||||
UserPreferencesProvider.of(context).setMeteringScreenLayout(_features);
|
UserPreferencesProvider.of(context).setMeteringScreenLayout(_features);
|
||||||
Navigator.of(context).pop();
|
Navigator.of(context).pop();
|
||||||
},
|
},
|
||||||
|
@ -73,7 +82,7 @@ class _MeteringScreenLayoutFeaturesDialogState extends State<MeteringScreenLayou
|
||||||
String _toStringLocalized(BuildContext context, MeteringScreenLayoutFeature feature) {
|
String _toStringLocalized(BuildContext context, MeteringScreenLayoutFeature feature) {
|
||||||
switch (feature) {
|
switch (feature) {
|
||||||
case MeteringScreenLayoutFeature.equipmentProfiles:
|
case MeteringScreenLayoutFeature.equipmentProfiles:
|
||||||
return S.of(context).equipmentProfiles;
|
return S.of(context).meteringScreenLayoutHintEquipmentProfiles;
|
||||||
case MeteringScreenLayoutFeature.extremeExposurePairs:
|
case MeteringScreenLayoutFeature.extremeExposurePairs:
|
||||||
return S.of(context).meteringScreenFeatureExtremeExposurePairs;
|
return S.of(context).meteringScreenFeatureExtremeExposurePairs;
|
||||||
case MeteringScreenLayoutFeature.filmPicker:
|
case MeteringScreenLayoutFeature.filmPicker:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
name: lightmeter
|
name: lightmeter
|
||||||
description: Lightmeter app inspired by Material 3 design system.
|
description: Lightmeter app inspired by Material 3 design system.
|
||||||
publish_to: "none"
|
publish_to: "none"
|
||||||
version: 0.14.0+39
|
version: 0.14.1+40
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ">=3.0.0 <4.0.0"
|
||||||
|
|
Loading…
Reference in a new issue