实例方法
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 Optional listRowSeparator(_:edges:)用法及代码示例
- Swift Optional listRowSeparatorTint(_:edges:)用法及代码示例
- Swift Optional listRowBackground(_:)用法及代码示例
- Swift Optional listSectionSeparatorTint(_:edges:)用法及代码示例
- Swift Optional listSectionSeparator(_:edges:)用法及代码示例
- Swift Optional lineSpacing(_:)用法及代码示例
- Swift Optional lineLimit(_:)用法及代码示例
- Swift Optional luminanceToAlpha()用法及代码示例
- Swift Optional labelsHidden()用法及代码示例
- Swift Optional labelStyle(_:)用法及代码示例
- Swift Optional layoutPriority(_:)用法及代码示例
- Swift Optional symbolVariant(_:)用法及代码示例
- Swift Optional popover(isPresented:attachmentAnchor:arrowEdge:content:)用法及代码示例
- Swift Optional mask(alignment:_:)用法及代码示例
- Swift Optional badge(_:)用法及代码示例
- Swift Optional fullScreenCover(isPresented:onDismiss:content:)用法及代码示例
- Swift Optional keyboardType(_:)用法及代码示例
- Swift Optional clipShape(_:style:)用法及代码示例
- Swift Optional preferredColorScheme(_:)用法及代码示例
- Swift Optional background(_:ignoresSafeAreaEdges:)用法及代码示例
- Swift Optional saturation(_:)用法及代码示例
- Swift Optional focusSection()用法及代码示例
- Swift Optional overlay(alignment:content:)用法及代码示例
- Swift Optional colorMultiply(_:)用法及代码示例
- Swift Optional confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Optional listRowInsets(_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。