实例方法
list
listRowInsets(_:)
对列表中的行应用插图。
声明
func listRowInsets(_ insets: EdgeInsets?) -> some View
返回值
用作列表单元格时使用给定边插图的视图。
参数
insets
EdgeInsets
应用于视图的边。
详述
使用 listRowInsets(_:)
更改列表项内容的默认填充。
在下面的示例中,Flavor
枚举为列表项提供内容。 SwiftUI ForEach
结构计算Flavor
枚举的每个元素的视图,并使用结果文本提取其每个元素的原始值以创建每个列表行项目。 listRowInsets(_:)
修饰符然后根据提供的EdgeInsets
更改列表中每一行的边插入:
struct ContentView: View {
enum Flavor: String, CaseIterable, Identifiable {
var id: String { self.rawValue }
case vanilla, chocolate, strawberry
}
var body: some View {
List {
ForEach(Flavor.allCases) {
Text($0.rawValue)
.listRowInsets(.init(top: 0,
leading: 25,
bottom: 0,
trailing: 0))
}
}
}
}
可用版本
iOS 13.0+, iPadOS 13.0+, macOS 10.15+, Mac Catalyst 13.0+, tvOS 13.0+, watchOS 6.0+
相关用法
- Swift Never listRowSeparatorTint(_:edges:)用法及代码示例
- Swift Never listRowSeparator(_:edges:)用法及代码示例
- Swift Never listRowBackground(_:)用法及代码示例
- Swift Never listSectionSeparatorTint(_:edges:)用法及代码示例
- Swift Never listSectionSeparator(_:edges:)用法及代码示例
- Swift Never lineSpacing(_:)用法及代码示例
- Swift Never lineLimit(_:)用法及代码示例
- Swift Never luminanceToAlpha()用法及代码示例
- Swift Never labelStyle(_:)用法及代码示例
- Swift Never labelsHidden()用法及代码示例
- Swift Never layoutPriority(_:)用法及代码示例
- Swift Never pageCommand(value:in:step:)用法及代码示例
- Swift Never opacity(_:)用法及代码示例
- Swift Never colorMultiply(_:)用法及代码示例
- Swift Never accessibilityAction(action:label:)用法及代码示例
- Swift Never alert(isPresented:error:actions:message:)用法及代码示例
- Swift Never confirmationDialog(_:isPresented:titleVisibility:actions:)用法及代码示例
- Swift Never flipsForRightToLeftLayoutDirection(_:)用法及代码示例
- Swift Never position(x:y:)用法及代码示例
- Swift Never position(_:)用法及代码示例
- Swift Never accessibilityAction(_:_:)用法及代码示例
- Swift Never previewDisplayName(_:)用法及代码示例
- Swift Never badge(_:)用法及代码示例
- Swift Never progressViewStyle(_:)用法及代码示例
- Swift Never buttonStyle(_:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Never listRowInsets(_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。