mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
iOS - chapters header is a button now
This commit is contained in:
parent
a33a1d7658
commit
b0d81cdefd
@ -442,6 +442,21 @@ struct VideoDetails: View {
|
||||
}
|
||||
|
||||
var chaptersHeader: some View {
|
||||
#if canImport(UIKit)
|
||||
Button(action: {
|
||||
chaptersExpanded.toggle()
|
||||
}) {
|
||||
HStack {
|
||||
Text("Chapters".localized())
|
||||
Spacer()
|
||||
Image(systemName: chaptersExpanded ? "chevron.up" : "chevron.down")
|
||||
.imageScale(.small)
|
||||
}
|
||||
.padding(.horizontal)
|
||||
.font(.caption)
|
||||
.foregroundColor(.secondary)
|
||||
}
|
||||
#elseif canImport(AppKit)
|
||||
HStack {
|
||||
Text("Chapters".localized())
|
||||
Spacer()
|
||||
@ -453,6 +468,7 @@ struct VideoDetails: View {
|
||||
.padding(.horizontal)
|
||||
.font(.caption)
|
||||
.foregroundColor(.secondary)
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user