我正在尝试在 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 预览中的样子:
在 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()
}
因为这段代码缺少任何空格,所以它现在是这样的:
我的标准是:
我会使用 Spacer
元素,但我不相信这会起作用,因为在 for 循环中,我相信我最终会在第一个之前或之后拥有一个 Spacer
最后一个元素,我不想要。