首页 > 解决方案 > SwiftUI Button 文本对齐问题

问题描述

我想在这样的手表应用中制作 UI

在此处输入图像描述

但是信息按钮文本对齐不正确。见下图:尝试使用文本“i”和系统图像“信息”,仍然是同样的问题

在此处输入图像描述

这是我的代码:

        VStack {
            TextField("User Name", text: $userName)
                .textContentType(.username)
                .multilineTextAlignment(.center)
            SecureField("Password", text: $password)
                .textContentType(.password)
                .multilineTextAlignment(.center)
            Spacer()
            Spacer()
            HStack {
                Button(action: {
                    //action
                }) {
                    Text("Go")
                }.disabled(userName.isEmpty || password.isEmpty)
                    .frame(width: 80, height: 40, alignment: Alignment.bottom)
                Spacer()
                
                VStack {
                    Spacer()
                    Button(action: {
                        //action
                    }) {
                        Image(systemName: "info")
                    }.frame(width: 25, height: 25, alignment: Alignment.bottom)
                        .foregroundColor(.black)
                        .background(Color.white)
                    .clipShape(Circle())
                }
                
            }
        }

标签: swiftswiftuiwatchos

解决方案


您只是不需要那些框架对齐和间隔,通过删除那些让默认中心对齐生效:

HStack(alignment: .bottom) {   // << here !!
    Button(action: {
        //action
    }) {
        Text("Go")
    }.disabled(userName.isEmpty || password.isEmpty)
        .frame(width: 80, height: 40)

    Spacer()
    
    Button(action: {
        //action
    }) {
        Image(systemName: "info")
    }.frame(width: 25, height: 25)
        .foregroundColor(.black)
        .background(Color.white)
    .clipShape(Circle())
}

推荐阅读