1
0
mirror of https://github.com/yattee/yattee.git synced 2025-04-29 16:30:32 +05:30

Hide buttons on tvOS

This commit is contained in:
Arkadiusz Fal 2022-11-10 22:28:55 +01:00
parent cb81a687bc
commit 67d2c33771

View File

@ -76,14 +76,18 @@ struct OpenVideosView: View {
Group { Group {
openURLsButton openURLsButton
Spacer() #if !os(tvOS)
Spacer()
openFromClipboardButton openFromClipboardButton
#endif
} }
} }
.padding(.bottom, 10) .padding(.bottom, 10)
openFilesButton #if !os(tvOS)
openFilesButton
#endif
Spacer() Spacer()
} }