add fullscreen visualizer (#1546)

This commit is contained in:
jeffvli
2026-01-18 02:17:55 -08:00
parent 27a5153b8a
commit 0e388dabf5
14 changed files with 555 additions and 34 deletions
@@ -17,6 +17,7 @@ interface FullScreenPlayerState {
expanded: boolean;
opacity: number;
useImageAspectRatio: boolean;
visualizerExpanded: boolean;
}
export const useFullScreenPlayerStore = createWithEqualityFn<FullScreenPlayerSlice>()(
@@ -35,6 +36,7 @@ export const useFullScreenPlayerStore = createWithEqualityFn<FullScreenPlayerSli
expanded: false,
opacity: 60,
useImageAspectRatio: false,
visualizerExpanded: false,
})),
{ name: 'store_full_screen_player' },
),