I have a design that looks like this:
When I wrap it in a Button, the Image and "HOME" text move toward the center:
I am trying to keep the contents aligned to the left but I'm having trouble. Here's the code that makes up this component.
struct HomeSection: View {
var body: some View {
Button(action: {
}) {
Group {
Spacer().frame(width: 0, height: 36.0, alignment: .topLeading)
HStack {
Image("home")
.resizable()
.frame(width: 24, height: 24)
.foregroundColor(.navigationTextGrey)
Text("HOME")
.bold()
.font(.system(size: 17.0))
.foregroundColor(Color.navigationTextGrey)
.padding(.leading, 4.0)
}
Rectangle()
.fill(Color.navigationTextGrey)
.frame(width: UIScreen.main.bounds.width - 60, height: 1)
.padding(.top, 6.0)
}
}
}
}
You can add a spacer to the HStack and padding to align the house image to the rectangle.
var body: some View {
Button(action: {
}) {
Group {
Spacer().frame(width: 0, height: 36.0, alignment: .topLeading)
HStack {
Image("home")
.resizable()
.frame(width: 24, height: 24)
.foregroundColor(.navigationTextGrey)
.padding(.leading, 30.0)
Text("HOME")
.bold()
.font(.system(size: 17.0))
.foregroundColor(Color.navigationTextGrey)
.padding(.leading, 4.0)
Spacer()
}
Rectangle()
.fill(Color.navigationTextGrey)
.frame(width: UIScreen.main.bounds.width - 60, height: 1)
.padding(.top, 6.0)
}
}
}
This is the end result:
Also, instead of a rectangle, there is a divider view that does the same thing as your rectangle if you want to clean up your code a little
Divider()
.padding([.leading, .trailing], 30)
Yeah this can be cleaned up a lot.
var body: some View {
Button(action: {
}) {
VStack(spacing: 6) {
HStack(spacing: 4) {
Image("home")
.resizable()
.frame(width: 24, height: 24)
Text("HOME")
.bold()
.font(.system(size: 17.0))
Spacer()
}
Divider()
}
}
.foregroundColor(.navigationTextGrey)
.padding([.leading, .trailing], 30)
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With