mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
9b0b387514
added camera plugin to project more reverse naming added communication bloc layout fix
25 lines
No EOL
511 B
Dart
25 lines
No EOL
511 B
Dart
abstract class MeteringCommunicationState {
|
|
const MeteringCommunicationState();
|
|
}
|
|
|
|
class InitState extends MeteringCommunicationState {
|
|
const InitState();
|
|
}
|
|
|
|
abstract class SourceState extends MeteringCommunicationState {
|
|
const SourceState();
|
|
}
|
|
|
|
abstract class ScreenState extends MeteringCommunicationState {
|
|
const ScreenState();
|
|
}
|
|
|
|
class MeasureState extends SourceState {
|
|
const MeasureState();
|
|
}
|
|
|
|
class MeasuredState extends ScreenState {
|
|
final double ev100;
|
|
|
|
const MeasuredState(this.ev100);
|
|
} |