gpt4 book ai didi

swift - 从 SwiftUI 的列表中删除默认填充

转载 作者:行者123 更新时间:2023-12-03 09:28:59 26 4
gpt4 key购买 nike

默认情况下,使用 ScrollView 时,其中的 View 分布在整个屏幕宽度上,但使用 List 时,两侧有填充。有没有办法摆脱这种填充?

最佳答案

要实现这一点,您需要使用 ForEachList结合 .listRowInsets如下例所示

demo

struct Demo: View {
var colors: [Color] = [.red, .blue, .yellow]
var body: some View {
List {
ForEach(colors, id: \.self) { color in
color
}.listRowInsets(EdgeInsets())
}
}
}

关于swift - 从 SwiftUI 的列表中删除默认填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60909242/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com