0

我想知道是否有人可以为我指出正确的方向,让两个文本项目彼此相邻而不留下白色间隙(见下图)。有很多间距、边界和对齐方式,但在玩了 30 分钟后,我似乎并没有更近。

在此处输入图像描述

我正在使用的代码如下:

struct TestView: View {
    var body: some View {
        VStack {
            HStack() {
                Text("SHOT").background(Color.red)
                Text("GUN").background(Color.blue)
            }
            Text("SHOTGUN").background(Color.green)
        }
    }
}
4

1 回答 1

1

尝试

struct ContentView: View {
    var body: some View {
        VStack {
            HStack(spacing: 0) {
                Text("SHOT").background(Color.red)
                Text("GUN").background(Color.blue)
            }
            Text("SHOTGUN").background(Color.green)
        }
    }
}
于 2019-11-20T17:21:03.837 回答