mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 23:40:41 +00:00
00c0a6134d
typo fixed closed container scale fixed dialog title animation implemented `AnimatedDialog` added open/close children transition clean up close dialog
9 lines
147 B
Dart
9 lines
147 B
Dart
class ReadingValue {
|
|
final String label;
|
|
final String value;
|
|
|
|
const ReadingValue({
|
|
required this.label,
|
|
required this.value,
|
|
});
|
|
}
|