profile patch

This commit is contained in:
cheykrym 2025-07-16 07:01:03 +03:00
parent 71b19f15ba
commit 38de1cc204

View File

@ -104,6 +104,7 @@ struct ProfileContentTabbedGrid: View {
Rectangle() Rectangle()
.frame(height: 2) .frame(height: 2)
.foregroundColor(.primary) .foregroundColor(.primary)
.padding(.horizontal)
} }
.frame(maxWidth: .infinity) .frame(maxWidth: .infinity)
} }
@ -120,6 +121,7 @@ struct ProfileContentTabbedGrid: View {
Rectangle() Rectangle()
.frame(height: 2) .frame(height: 2)
.foregroundColor(.clear) .foregroundColor(.clear)
.padding(.horizontal)
} }
.frame(maxWidth: .infinity) .frame(maxWidth: .infinity)
} }
@ -136,6 +138,7 @@ struct ProfileContentTabbedGrid: View {
Rectangle() Rectangle()
.frame(height: 2) .frame(height: 2)
.foregroundColor(selectedTabIndex == index ? .primary : .clear) .foregroundColor(selectedTabIndex == index ? .primary : .clear)
.padding(.horizontal)
} }
.frame(maxWidth: .infinity) .frame(maxWidth: .infinity)
.onTapGesture { .onTapGesture {