diff --git a/apple/OmnivoreKit/Sources/App/Views/AudioPlayer/MiniPlayer.swift b/apple/OmnivoreKit/Sources/App/Views/AudioPlayer/MiniPlayer.swift index cd91d1892..20db25aab 100644 --- a/apple/OmnivoreKit/Sources/App/Views/AudioPlayer/MiniPlayer.swift +++ b/apple/OmnivoreKit/Sources/App/Views/AudioPlayer/MiniPlayer.swift @@ -148,10 +148,10 @@ .onTapGesture { withAnimation(.easeIn(duration: 0.08)) { expanded = true } }.sheet(isPresented: $expanded) { - NavigationView { - ExpandedPlayer() - } + ExpandedPlayer() } + .offset(y: expanded ? 88 : 0) + .opacity(expanded ? 0.0 : 1.0) } public var body: some View {