m3_lightmeter/lib/screens/metering/components/topbar/topbar.dart

129 lines
4.5 KiB
Dart
Raw Normal View History

2022-10-24 20:25:38 +00:00
import 'package:flutter/material.dart';
2022-10-30 18:30:12 +00:00
import 'package:lightmeter/generated/l10n.dart';
2022-10-29 18:02:45 +00:00
import 'package:lightmeter/models/exposure_pair.dart';
2022-10-24 20:25:38 +00:00
import 'package:lightmeter/res/dimens.dart';
2022-10-29 18:02:45 +00:00
import 'components/reading_container.dart';
2022-10-24 20:25:38 +00:00
class MeteringTopBar extends StatelessWidget {
static const _columnsCount = 3;
2022-10-29 18:02:45 +00:00
final ExposurePair? fastest;
final ExposurePair? slowest;
2022-10-24 20:25:38 +00:00
final double ev;
final int iso;
final double nd;
const MeteringTopBar({
2022-10-29 18:02:45 +00:00
required this.fastest,
required this.slowest,
2022-10-24 20:25:38 +00:00
required this.ev,
required this.iso,
required this.nd,
super.key,
});
@override
Widget build(BuildContext context) {
2022-10-29 11:04:46 +00:00
final columnWidth =
(MediaQuery.of(context).size.width - Dimens.paddingM * 2 - Dimens.grid16 * (_columnsCount - 1)) / 3;
2022-10-29 11:06:39 +00:00
return ClipRRect(
borderRadius: const BorderRadius.only(
bottomLeft: Radius.circular(Dimens.borderRadiusL),
bottomRight: Radius.circular(Dimens.borderRadiusL),
),
child: ColoredBox(
color: Theme.of(context).colorScheme.surface,
child: Padding(
padding: const EdgeInsets.all(Dimens.paddingM),
child: SafeArea(
bottom: false,
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
SizedBox(
height: columnWidth / 3 * 4,
child: ReadingContainer(
2022-10-29 18:02:45 +00:00
values: [
2022-10-29 11:06:39 +00:00
ReadingValue(
2022-10-30 18:30:12 +00:00
label: S.of(context).fastestExposurePair,
2022-10-29 18:02:45 +00:00
value: fastest != null
? '${fastest!.aperture.toString()} - ${fastest!.shutterSpeed.toString()}'
: 'N/A',
2022-10-29 11:06:39 +00:00
),
ReadingValue(
2022-10-30 18:30:12 +00:00
label: S.of(context).slowestExposurePair,
2022-10-29 18:02:45 +00:00
value: fastest != null
? '${slowest!.aperture.toString()} - ${slowest!.shutterSpeed.toString()}'
: 'N/A',
2022-10-29 11:06:39 +00:00
),
],
),
2022-10-24 20:25:38 +00:00
),
2022-10-29 11:06:39 +00:00
const _InnerPadding(),
Row(
children: [
SizedBox(
width: columnWidth,
child: ReadingContainer.singleValue(
value: ReadingValue(
label: 'EV',
2022-10-29 18:02:45 +00:00
value: ev.toStringAsFixed(1),
2022-10-29 11:06:39 +00:00
),
2022-10-29 11:04:46 +00:00
),
),
2022-10-29 11:06:39 +00:00
const _InnerPadding(),
SizedBox(
width: columnWidth,
child: ReadingContainer.singleValue(
value: ReadingValue(
label: 'ISO',
value: iso.toString(),
),
2022-10-29 11:04:46 +00:00
),
),
2022-10-29 11:06:39 +00:00
],
)
],
),
2022-10-24 20:25:38 +00:00
),
2022-10-29 11:06:39 +00:00
const _InnerPadding(),
SizedBox(
width: columnWidth,
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
ClipRRect(
borderRadius: BorderRadius.circular(Dimens.borderRadiusM),
child: const AspectRatio(
aspectRatio: 3 / 4,
child: ColoredBox(color: Colors.black),
),
2022-10-24 20:25:38 +00:00
),
2022-10-29 11:06:39 +00:00
const _InnerPadding(),
ReadingContainer.singleValue(
value: ReadingValue(
label: 'ND',
value: nd.toString(),
),
2022-10-24 20:25:38 +00:00
),
2022-10-29 11:06:39 +00:00
],
),
2022-10-29 11:04:46 +00:00
),
2022-10-29 11:06:39 +00:00
],
),
2022-10-24 20:25:38 +00:00
),
),
),
);
}
}
class _InnerPadding extends SizedBox {
2022-10-29 11:04:46 +00:00
const _InnerPadding() : super(height: Dimens.grid16, width: Dimens.grid16);
2022-10-24 20:25:38 +00:00
}