m3_lightmeter/lib/screens/metering/components/shared/exposure_pairs_list/widget_list_exposure_pairs.dart

98 lines
4.4 KiB
Dart
Raw Normal View History

2022-10-26 19:49:21 +00:00
import 'package:flutter/material.dart';
2022-12-16 08:08:12 +00:00
import 'package:lightmeter/data/models/exposure_pair.dart';
import 'package:lightmeter/generated/l10n.dart';
import 'package:lightmeter/providers/films_provider.dart';
2022-10-26 19:49:21 +00:00
import 'package:lightmeter/res/dimens.dart';
import 'package:lightmeter/screens/metering/components/shared/exposure_pairs_list/components/exposure_pairs_list_item/widget_item_list_exposure_pairs.dart';
import 'package:lightmeter/screens/shared/icon_placeholder/widget_icon_placeholder.dart';
import 'package:lightmeter/utils/context_utils.dart';
2022-10-26 19:49:21 +00:00
class ExposurePairsList extends StatelessWidget {
2022-10-29 18:02:45 +00:00
final List<ExposurePair> exposurePairs;
final ValueChanged<ExposurePair> onExposurePairTap;
2022-10-26 19:49:21 +00:00
const ExposurePairsList(this.exposurePairs, {required this.onExposurePairTap, super.key});
2022-10-26 19:49:21 +00:00
@override
Widget build(BuildContext context) {
return AnimatedSwitcher(
duration: Dimens.switchDuration,
child: exposurePairs.isEmpty
? IconPlaceholder(
icon: Icons.not_interested_outlined,
text: S.of(context).noExposurePairs,
)
: Stack(
2022-12-16 21:25:08 +00:00
alignment: Alignment.center,
2022-10-26 19:49:21 +00:00
children: [
Positioned.fill(
child: ListView.builder(
key: ValueKey(exposurePairs.hashCode),
padding: const EdgeInsets.symmetric(vertical: Dimens.paddingL),
itemCount: exposurePairs.length,
itemBuilder: (_, index) {
final exposurePair = ExposurePair(
exposurePairs[index].aperture,
Films.selectedOf(context).reciprocityFailure(exposurePairs[index].shutterSpeed),
);
return Stack(
alignment: Alignment.center,
children: [
GestureDetector(
onTap: context.isPro ? () => onExposurePairTap(exposurePair) : null,
child: Row(
key: ValueKey(index),
mainAxisAlignment: MainAxisAlignment.center,
children: [
Expanded(
child: Align(
alignment: Alignment.centerLeft,
child: ExposurePairsListItem(
exposurePair.aperture,
tickOnTheLeft: false,
),
),
),
Expanded(
child: Align(
alignment: Alignment.centerLeft,
child: ExposurePairsListItem(
exposurePair.shutterSpeed,
tickOnTheLeft: true,
),
),
),
],
),
),
Positioned(
top: 0,
bottom: 0,
child: LayoutBuilder(
builder: (context, constraints) => Align(
alignment: index == 0
? Alignment.bottomCenter
: (index == exposurePairs.length - 1 ? Alignment.topCenter : Alignment.center),
child: SizedBox(
height: index == 0 || index == exposurePairs.length - 1
? constraints.maxHeight / 2
: constraints.maxHeight,
child: ColoredBox(
color: Theme.of(context).colorScheme.onBackground,
child: const SizedBox(width: 1),
),
),
),
),
),
],
);
},
2022-10-26 19:49:21 +00:00
),
),
],
),
);
}
}