mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 23:40:41 +00:00
c7ed4d332e
added `HapticsService` added haptics handling added `HapticsInteractor`
23 lines
458 B
Dart
23 lines
458 B
Dart
abstract class CameraEvent {
|
|
const CameraEvent();
|
|
}
|
|
|
|
class InitializeEvent extends CameraEvent {
|
|
const InitializeEvent();
|
|
}
|
|
|
|
class ZoomChangedEvent extends CameraEvent {
|
|
final double value;
|
|
|
|
const ZoomChangedEvent(this.value);
|
|
}
|
|
|
|
class ExposureOffsetChangedEvent extends CameraEvent {
|
|
final double value;
|
|
|
|
const ExposureOffsetChangedEvent(this.value);
|
|
}
|
|
|
|
class ExposureOffsetResetEvent extends CameraEvent {
|
|
const ExposureOffsetResetEvent();
|
|
}
|