New playback settings sheet

This commit is contained in:
Arkadiusz Fal
2022-12-21 21:16:47 +01:00
parent c01ff56854
commit 809bcd183a
14 changed files with 520 additions and 41 deletions

View File

@@ -104,6 +104,13 @@ struct ContentView: View {
}
)
#endif
#if os(iOS)
.background(
EmptyView().sheet(isPresented: $navigation.presentingPlaybackSettings) {
PlaybackSettings()
}
)
#endif
.background(
EmptyView().sheet(isPresented: $navigation.presentingOpenVideos) {
OpenVideosView()