From bc8adc634847e585f1d8054af78ff3d86df3bdf4 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Sat, 15 Nov 2025 11:21:59 +0100 Subject: [PATCH] Allow video player to extend into safe areas on iOS --- Shared/Navigation/ContentView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/Navigation/ContentView.swift b/Shared/Navigation/ContentView.swift index aebd7925..50b6bffd 100644 --- a/Shared/Navigation/ContentView.swift +++ b/Shared/Navigation/ContentView.swift @@ -48,7 +48,7 @@ struct ContentView: View { #endif } #if os(iOS) - .overlay(videoPlayer) + .overlay(videoPlayer.edgesIgnoringSafeArea(.all)) .sheet(isPresented: $navigation.presentingShareSheet) { if let shareURL = navigation.shareURL { ShareSheet(activityItems: [shareURL])