dashboard
repositories
activity
search
login
APPS
/
PAILot
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
fix(audio): don't treat AppLifecycleState.inactive as backgrounded
Matthias Nott
2026-06-11
d9227bf2860a6f23ab89d8e7e0d7a9bf448d0adf
[APPS/PAILot.git]
/
lib
/
services
/
navigate_notifier.dart
1
2
3
4
5
6
7
8
9
10
11
12
/// Bridge between NavigateScreen and ChatScreen's MQTT service.
/// ChatScreen sets the [navigateNotifierProvider] when MQTT is initialized.
/// NavigateScreen reads it to send key presses and screenshot requests.
class NavigateNotifier {
final void Function(String key, String? sessionId) sendKey;
final void Function(String? sessionId) requestScreenshot;
NavigateNotifier({
required this.sendKey,
required this.requestScreenshot,
});
}