mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
33 lines
795 B
Dart
33 lines
795 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lightmeter/models/photography_value.dart';
|
|
|
|
import 'components/exposure_pairs_list/exposure_pairs_list.dart';
|
|
import 'components/topbar/topbar.dart';
|
|
|
|
class MeteringScreen extends StatelessWidget {
|
|
const MeteringScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
const ev = 0.3;
|
|
return Scaffold(
|
|
backgroundColor: Theme.of(context).colorScheme.background,
|
|
body: Column(
|
|
children: [
|
|
const MeteringTopBar(
|
|
lux: 283,
|
|
ev: ev,
|
|
iso: 6400,
|
|
nd: 0,
|
|
),
|
|
Expanded(
|
|
child: ExposurePairsList(
|
|
ev: ev,
|
|
stopType: Stop.third,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|