Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions Sources/Bonsplit/Internal/Views/TabBarView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,13 @@ struct TabBarView: View {
let shouldShow = presentationMode != "minimal" || isHoveringTabBar
let bg = TabBarColors.paneBackground(for: appearance)
ZStack(alignment: .trailing) {
// Test: solid red to verify coverage
Color.red
.frame(width: 114)
// Backdrop: fade gradient then solid
HStack(spacing: 0) {
LinearGradient(colors: [bg.opacity(0), bg], startPoint: .leading, endPoint: .trailing)
.frame(width: 24)
Rectangle().fill(bg)
}
.frame(width: 114)
// Buttons on top
splitButtons
.saturation(tabBarSaturation)
Expand Down
Loading