iOS: remove redundant Now Playing header and Done button from full player
Some checks failed
CI / Scraper / Lint (pull_request) Failing after 7s
CI / UI / Build (pull_request) Failing after 8s
CI / Scraper / Test (pull_request) Failing after 10s
CI / Scraper / Build (pull_request) Has been skipped
iOS CI / Build (push) Has been cancelled
iOS CI / Test (push) Has been cancelled
iOS CI / Build (pull_request) Failing after 2s
iOS CI / Test (pull_request) Has been skipped

This commit is contained in:
Admin
2026-03-07 23:08:35 +05:00
parent 0745178d9e
commit bb604019fc

View File

@@ -153,28 +153,7 @@ struct FullPlayerView: View {
.fill(Color.white.opacity(0.35))
.frame(width: 36, height: 4)
.padding(.top, 12)
.padding(.bottom, 4)
// Navigation bar row
HStack {
Spacer()
Text("Now Playing")
.font(.subheadline.weight(.semibold))
.foregroundStyle(.white)
Spacer()
Button {
onDismiss()
} label: {
Text("Done")
.font(.subheadline.weight(.semibold))
.foregroundStyle(.white)
.padding(.horizontal, 14)
.padding(.vertical, 7)
.background(.white.opacity(0.15), in: Capsule())
}
}
.padding(.horizontal, 24)
.padding(.top, 8)
.padding(.bottom, 8)
Spacer(minLength: 0)