mirror of
https://github.com/yattee/yattee.git
synced 2025-08-05 02:04:07 +00:00
tvOS layout improvements
This commit is contained in:
@@ -10,6 +10,8 @@ struct TVNavigationView: View {
|
||||
|
||||
@Default(.visibleSections) private var visibleSections
|
||||
|
||||
@State private var playerInitialized = false
|
||||
|
||||
var body: some View {
|
||||
NavigationView {
|
||||
TabView(selection: navigation.tabSelectionBinding) {
|
||||
@@ -52,11 +54,11 @@ struct TVNavigationView: View {
|
||||
.tag(TabSelection.search)
|
||||
|
||||
SettingsView()
|
||||
.navigationBarHidden(true)
|
||||
.tabItem { Image(systemName: "gear") }
|
||||
.tag(TabSelection.settings)
|
||||
}
|
||||
}
|
||||
.background(videoPlayerInitialize)
|
||||
.fullScreenCover(isPresented: $navigation.presentingAddToPlaylist) {
|
||||
if let video = navigation.videoToAddToPlaylist {
|
||||
AddToPlaylistView(video: video)
|
||||
@@ -76,6 +78,18 @@ struct TVNavigationView: View {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ViewBuilder var videoPlayerInitialize: some View {
|
||||
if !playerInitialized {
|
||||
VideoPlayerView()
|
||||
.scaleEffect(0.00001)
|
||||
.onAppear {
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
|
||||
playerInitialized = true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
struct TVNavigationView_Previews: PreviewProvider {
|
||||
|
Reference in New Issue
Block a user