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 {
openURLsButton
Spacer()
#if !os(tvOS)
Spacer()
openFromClipboardButton
openFromClipboardButton
#endif
}
}
.padding(.bottom, 10)
openFilesButton
#if !os(tvOS)
openFilesButton
#endif
Spacer()
}