Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SwiftUI - Align contents of Button to the left

Tags:

swift

swiftui

I have a design that looks like this:

enter image description here

When I wrap it in a Button, the Image and "HOME" text move toward the center:

enter image description here

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)
        }
    }
}
}
like image 605
natecraft1 Avatar asked Aug 16 '19 05:08

natecraft1


2 Answers

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: enter image description here

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)
like image 136
sfung3 Avatar answered Oct 07 '22 14:10

sfung3


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)
}
like image 40
trapper Avatar answered Oct 07 '22 14:10

trapper