functional carplay experience in simulators

This commit is contained in:
2026-05-17 18:35:01 -07:00
parent e3288e044a
commit b8e86263d9
5 changed files with 450 additions and 11 deletions
+7
View File
@@ -126,6 +126,13 @@ class KryzAudioHandler extends BaseAudioHandler with SeekHandler {
);
}
@override
Future<void> pause() async {
// CarPlay and lock-screen transport may issue pause for live streams.
// Treat pause as stop to keep behavior consistent across platforms.
await stop();
}
@override
Future<void> seek(Duration position) async {
// Live stream is intentionally non-seekable.