mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-04-04 08:30:41 +00:00
Compare commits
2 commits
f0110e0edf
...
91f90ae8e8
Author | SHA1 | Date | |
---|---|---|---|
![]() |
91f90ae8e8 | ||
![]() |
79f702f7ea |
5 changed files with 87 additions and 42 deletions
3
assets/release_notes/release_notes_en_1.0.4.md
Normal file
3
assets/release_notes/release_notes_en_1.0.4.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
- Fixed histogram being affected by spot metering.
|
||||
- Improved text fields focus handling.
|
||||
- Added German translation.
|
|
@ -109,17 +109,17 @@ void testE2E(String description) {
|
|||
);
|
||||
|
||||
/// Add ND to shoot another scene
|
||||
await tester.openPickerAndSelect<NdValuePicker, NdValue>('2');
|
||||
await _expectMeteringStateAndMeasure(
|
||||
tester,
|
||||
equipmentProfile: mockEquipmentProfiles[0],
|
||||
film: mockFilms[0],
|
||||
fastest: 'f/1.8 - 1/200',
|
||||
slowest: 'f/16 - 1/2.5',
|
||||
iso: '400',
|
||||
nd: '2',
|
||||
ev: mockPhotoEv100 + 2 - 1,
|
||||
);
|
||||
// await tester.openPickerAndSelect<NdValuePicker, NdValue>('2');
|
||||
// await _expectMeteringStateAndMeasure(
|
||||
// tester,
|
||||
// equipmentProfile: mockEquipmentProfiles[0],
|
||||
// film: mockFilms[0],
|
||||
// fastest: 'f/1.8 - 1/200',
|
||||
// slowest: 'f/16 - 1/2.5',
|
||||
// iso: '400',
|
||||
// nd: '2',
|
||||
// ev: mockPhotoEv100 + 2 - 1,
|
||||
// );
|
||||
|
||||
/// Select another lens without ND
|
||||
await tester.openPickerAndSelect<EquipmentProfilePicker, EquipmentProfile>(mockEquipmentProfiles[1].name);
|
||||
|
|
|
@ -137,6 +137,7 @@ class _NameFieldBuilder extends StatelessWidget {
|
|||
bottom: Dimens.paddingS / 2,
|
||||
),
|
||||
child: LightmeterTextField(
|
||||
autofocus: true,
|
||||
initialValue: state.name,
|
||||
maxLength: 48,
|
||||
hintText: S.of(context).name,
|
||||
|
|
|
@ -1,33 +1,74 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
|
||||
class LightmeterTextField extends TextFormField {
|
||||
LightmeterTextField({
|
||||
super.controller,
|
||||
super.autofocus,
|
||||
super.initialValue,
|
||||
super.inputFormatters,
|
||||
super.maxLength,
|
||||
super.onChanged,
|
||||
super.style,
|
||||
super.textAlign,
|
||||
Widget? leading,
|
||||
String? hintText,
|
||||
}) : super(
|
||||
autovalidateMode: AutovalidateMode.onUserInteraction,
|
||||
maxLines: 1,
|
||||
decoration: InputDecoration(
|
||||
counter: const SizedBox(),
|
||||
contentPadding: EdgeInsets.zero,
|
||||
errorStyle: const TextStyle(fontSize: 0),
|
||||
icon: leading,
|
||||
hintText: hintText,
|
||||
),
|
||||
validator: (value) {
|
||||
if (value == null || value.isEmpty) {
|
||||
return '';
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
},
|
||||
);
|
||||
class LightmeterTextField extends StatefulWidget {
|
||||
const LightmeterTextField({
|
||||
this.autofocus = false,
|
||||
this.controller,
|
||||
this.hintText,
|
||||
this.initialValue,
|
||||
this.inputFormatters,
|
||||
this.leading,
|
||||
this.maxLength,
|
||||
this.onChanged,
|
||||
this.style,
|
||||
this.textAlign = TextAlign.start,
|
||||
});
|
||||
|
||||
final bool autofocus;
|
||||
final TextEditingController? controller;
|
||||
final String? hintText;
|
||||
final String? initialValue;
|
||||
final List<TextInputFormatter>? inputFormatters;
|
||||
final Widget? leading;
|
||||
final int? maxLength;
|
||||
final void Function(String)? onChanged;
|
||||
final TextStyle? style;
|
||||
final TextAlign textAlign;
|
||||
|
||||
@override
|
||||
State<LightmeterTextField> createState() => _LightmeterTextFieldState();
|
||||
}
|
||||
|
||||
class _LightmeterTextFieldState extends State<LightmeterTextField> {
|
||||
late final focusNode = FocusNode(debugLabel: widget.hintText);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return TextFormField(
|
||||
autofocus: widget.autofocus,
|
||||
autovalidateMode: AutovalidateMode.onUserInteraction,
|
||||
controller: widget.controller,
|
||||
focusNode: focusNode,
|
||||
initialValue: widget.initialValue,
|
||||
inputFormatters: widget.inputFormatters,
|
||||
maxLength: widget.maxLength,
|
||||
onChanged: widget.onChanged,
|
||||
style: widget.style,
|
||||
textAlign: widget.textAlign,
|
||||
decoration: InputDecoration(
|
||||
counter: const SizedBox(),
|
||||
contentPadding: EdgeInsets.zero,
|
||||
errorStyle: const TextStyle(fontSize: 0),
|
||||
icon: widget.leading,
|
||||
hintText: widget.hintText,
|
||||
),
|
||||
onTapOutside: (event) {
|
||||
focusNode.unfocus();
|
||||
},
|
||||
validator: (value) {
|
||||
if (value == null || value.isEmpty) {
|
||||
return '';
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
focusNode.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: lightmeter
|
||||
description: Lightmeter app inspired by Material 3 design system.
|
||||
publish_to: "none"
|
||||
version: 1.0.3+58
|
||||
version: 1.0.4+59
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
|
|
Loading…
Reference in a new issue