SwiftUI 在图像周围生成不需要的空间

nin*_*nes 4 swiftui

下面的代码生成一个简单的 VStack 和文本视图,它们之间没有显示间距(第 1 行和第 2 行)。

但是,将图像添加到第三行(绿色)会在整行的上方和下方增加不需要的间距。

struct ContentView: View {
  var body: some View {
    VStack {
      HStack {
        Text("one thing")
      }.background(Color(.yellow))
      HStack {
        Text("nothing")
      }.background(Color(.red))
      HStack {
        Text("three")
        Image(systemName: "star")
          .resizable()
          .frame(width: 8, height: 8)
      }.background(Color(.green))
      HStack {
        Text("three things")
      }.background(Color(.red))
    }
  }
}
Run Code Online (Sandbox Code Playgroud)

如何避免额外的不需要的空间?

空间显示与图像大小无关(即使图像尺寸只有几个像素)。

而且,当然,我想知道为什么会生成空间。

谢谢你的帮助

以上代码截图:

输出:

E.C*_*oms 6

您可以调整 VStack 的间距:

var body: some View {
            VStack (spacing: 0) {
                 HStack {
                   Text("one thing")
                 }.background(Color(.yellow))
                 HStack {
                   Text("nothing")
                 }.background(Color(.red))
                 HStack {
                   Text("three")
                   Image(systemName: "star")
                     .resizable()
                     .frame(width: 8, height: 8)
                 }.background(Color(.green))
                 HStack {
                   Text("three things")
                 }.background(Color(.red))
               }
             }
Run Code Online (Sandbox Code Playgroud)

  • 呃,是的。工作完美。仍然想知道为什么通过添加图像来增加间距...... (2认同)