如何在 Jetpack Compose Column 中指定子项之间的确切间距?

时间:2021-06-30 18:39:07

标签: android-jetpack-compose

我正在尝试在 Jetpack Compose 中创建一个列,每个子元素之间具有特定的间距,例如 10.dp。在 SwiftUI 中,这相对简单。我只想创建一个带有 VStack 值的 spacing

struct ContentView: View {
    let strings = ["Hello", "World", "Apples"]

    var body: some View {
        VStack(spacing: 10) {
            ForEach(strings, id: \.self) { string in
                Text(string).background(Color.green)
            }
        }
        .background(Color.blue)
    }
}

struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
    }
}

这是在 SwiftUI 预览中的样子:

enter image description here

在 Jetpack Compose 中,我的代码是:

@Composable
fun ContentView() {
    val strings = listOf<String>("Hello", "World", "Apples")

    MaterialTheme {
        Surface(color = MaterialTheme.colors.background) {
            Column(
                modifier = Modifier
                    .background(Color.Blue)
                    // I would expect to be able to add something like ".spacer(10.dp)" here
            ) {
                strings.forEach { string ->
                    Text(
                        modifier = Modifier.background(Color.Green),
                        text = string
                    )
                }
            }
        }
    }
}

@Preview(showBackground = true)
@Composable
fun DefaultPreview() {
    ContentView()
}

因为这段代码缺少任何空格,所以它现在是这样的:

enter image description here

我的标准是:

  • 列的子元素之间应存在特定高度(例如 10.dp)的空间。
  • 空格不应出现在第一个元素之前。
  • 空格不应出现在最后元素之后。

我会使用 Spacer 元素,但我不相信这会起作用,因为在 for 循环中,我相信我最终会在第一个之前或之后拥有一个 Spacer最后一个元素,我不想要。

1 个答案:

答案 0 :(得分:3)

使用Arrangement.spacedBy

Column(
    modifier = Modifier
        .background(Color.Blue),
    verticalArrangement = Arrangement.spacedBy(10.dp)
) {
    // content here
}

enter image description here