Player bar visibility modes and settings

This commit is contained in:
Arkadiusz Fal
2022-12-17 19:35:07 +01:00
parent 8e5bafba58
commit fcf527fa87
20 changed files with 320 additions and 168 deletions

View File

@@ -20,7 +20,7 @@ struct ChannelCell: View {
}
var navigationLink: some View {
NavigationLink(destination: ChannelVideosView(channel: channel).modifier(PlayerOverlayModifier())) {
NavigationLink(destination: ChannelVideosView(channel: channel)) {
labelContent
}
}

View File

@@ -41,6 +41,7 @@ struct ChannelLinkView<ChannelLabel: View>: View {
@ViewBuilder private var channelNavigationLink: some View {
NavigationLink(destination: ChannelVideosView(channel: channel)) {
channelLabel
.lineLimit(1)
}
}