如何对齐文本内容而不是VStack中文本的文本视图

时间:2020-08-14 05:37:39

标签: swiftui

从屏幕快照中可以看到,Text中的两个VStack保持与文本视图的左边缘对齐,但未对齐实际内容。如何在视图而不是视图中对齐文本内容

enter image description here enter image description here

struct Content: View {
    var body: some View {
        return VStack(alignment: .leading) {
            Text("LARGE")
                .lineLimit(1)
                .font(
                    .system(size: 120.0,
                            weight: .medium, design: .monospaced))

            Text("SMALL")
                .lineLimit(1)
                .font(.system(size: 50.0,
                              weight: .medium, design: .monospaced))
        }
    }
}

PlaygroundPage.current.setLiveView(Content())

0 个答案:

没有答案