mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-23 07:50:42 +00:00
34 lines
918 B
Dart
34 lines
918 B
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:lightmeter/data/models/volume_action.dart';
|
|
import 'package:lightmeter/data/volume_events_service.dart';
|
|
|
|
class VolumeKeysNotifier extends ChangeNotifier with RouteAware {
|
|
final VolumeEventsService _volumeEventsService;
|
|
late final StreamSubscription<VolumeKey> _volumeKeysSubscription;
|
|
VolumeKey _value = VolumeKey.up;
|
|
|
|
VolumeKeysNotifier(this._volumeEventsService) {
|
|
_volumeKeysSubscription = _volumeEventsService
|
|
.volumeButtonsEventStream()
|
|
.map((event) => event == 24 ? VolumeKey.up : VolumeKey.down)
|
|
.listen((event) {
|
|
value = event;
|
|
});
|
|
}
|
|
|
|
VolumeKey get value => _value;
|
|
|
|
@protected
|
|
set value(VolumeKey newValue) {
|
|
_value = newValue;
|
|
notifyListeners();
|
|
}
|
|
|
|
@override
|
|
Future<void> dispose() async {
|
|
await _volumeKeysSubscription.cancel();
|
|
super.dispose();
|
|
}
|
|
}
|