Add new menus

This commit is contained in:
Arkadiusz Fal
2021-11-09 00:14:28 +01:00
parent 3b7d54aab2
commit e7e6bd109c
10 changed files with 116 additions and 17 deletions

View File

@@ -48,9 +48,6 @@ struct PlayerControlsView<Content: View>: View {
.contentShape(Rectangle())
}
.padding(.vertical, 20)
#if !os(tvOS)
.keyboardShortcut("o")
#endif
ZStack(alignment: .bottom) {
HStack {
@@ -73,10 +70,6 @@ struct PlayerControlsView<Content: View>: View {
.font(.system(size: 30))
.frame(minWidth: 30)
#if !os(tvOS)
.keyboardShortcut("p")
#endif
Button(action: { model.advanceToNextItem() }) {
Label("Next", systemImage: "forward.fill")
}