mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
e001c153fb
* [Android] wip * implemented `VolumeEventsService` * implemented `VolumeKeysListener` (wip) * Added screenshots links * [Android] nullable typo * implemented `VolumeKeysNotifier` * deinitialize camera when on Settings screen * disable volume handling when on Settings screen * used "platform" package to mock `isAndroid` * init/deinit camera on settings open * allow volume action override only on metering screen * lints * cleanup * await dispose * tests * reduced `SwitchListTile.contentPadding` * fixed tests * removed `VolumeAction.zoom` * added social preview * typo * fixed `CameraContainerBloc` tests * added `Stream.empty()` tests
26 lines
570 B
Dart
26 lines
570 B
Dart
import 'package:light_sensor/light_sensor.dart';
|
|
import 'package:platform/platform.dart';
|
|
|
|
class LightSensorService {
|
|
final LocalPlatform localPlatform;
|
|
|
|
const LightSensorService(this.localPlatform);
|
|
|
|
Future<bool> hasSensor() async {
|
|
if (!localPlatform.isAndroid) {
|
|
return false;
|
|
}
|
|
try {
|
|
return await LightSensor.hasSensor ?? false;
|
|
} catch (_) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
Stream<int> luxStream() {
|
|
if (!localPlatform.isAndroid) {
|
|
return const Stream<int>.empty();
|
|
}
|
|
return LightSensor.lightSensorStream;
|
|
}
|
|
}
|