m3_lightmeter/lib/screens/metering/communication/state_communication_metering.dart
Vadim 9b0b387514 Added camera package to project
added camera plugin to project

more reverse naming

added communication bloc

layout fix
2022-12-15 11:33:00 +03:00

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);
}