在SwiftUI的列表行中添加形状 [英] Adding shapes in List row of SwiftUI

查看:83
本文介绍了在SwiftUI的列表行中添加形状的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试创建一个列表视图,其中的行看起来像这样:

I am trying to create a List View where rows looks like this:

但是,我无法对齐前端的Circle.在VStack中使用Spacer()HStack进行了尝试,但是它不起作用.这是我的代码及其输出.

However, I am unable to align the Circle on the leading side. Tried using Spacer(), HStack within VStack, it just doesn't work. Here's my code and its output.

struct PeopleView: View {
    
    let people = ["Adam", "James"]
    
    var body: some View {
        NavigationView {
            List {
                ForEach(people, id: \.self) { person in
                    HStack {
                        Circle()
                        VStack {
                            Text("\(person)")
                        }
                    }
                }
            }
            .navigationBarTitle("People", displayMode: .inline)
        }
    }
}

推荐答案

实际上,在这种情况下,您不需要形状本身,而只是作为蒙版以视觉方式呈现圆形文本的蒙版.

Actually you don't need shape itself in this case, but only as a mask to visually present text in circle.

所以解决方案可以像下面的

So the solution can be like following

HStack {
    Text(person.prefix(2).uppercased()).bold()
        .foregroundColor(.white)
        .padding()
        .background(Color.red)
        .mask(Circle())          // << shaping text !!

    Spacer()
    VStack {
        Text("\(person)")
    }
}

这篇关于在SwiftUI的列表行中添加形状的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆