当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Swift Optional listSectionSeparatorTint(_:edges:)用法及代码示例


实例方法

listSectionSeparatorTint(_:edges:)

设置与部分关联的色调颜色。

声明

func listSectionSeparatorTint(
    _ color: Color?,
    edges: VerticalEdge.Set = .all
) -> some View

参数

color

用于为部分分隔符着色的颜色,或 nil 以使用当前列表样式的默认颜色。

edges

应用色调的行边集。列表样式可能决定不显示某些分隔符,通常是顶部边。默认值为 VerticalEdge/Set/all

详述

分隔符可以显示在一个部分的上方和下方。您可以指定此首选项应应用于哪个边。

此修饰符表示对包含 List 的偏好。列表样式是分隔符色调的最终仲裁者。

以下示例显示了一个简单的分组列表,其部分分隔符根据 section-specific 数据着色:


List {
    ForEach(garage) { garage in
        Section(header: Text(garage.location)) {
            ForEach(garage.cars) { car in
                Text(car.model)
                    .listRowSeparatorTint(car.brandColor)
            }
        }
        .listSectionSeparatorTint(
            garage.cars.last?.brandColor, edges: .bottom)
    }
}
.listStyle(.grouped)

要更改行分隔符的可见性和色调颜色,请使用 View/listRowSeparator(_:edges:)View/listRowSeparatorTint(_:edges:) 。要隐藏部分分隔符,请使用 View/listSectionSeparator(_:edges:)

可用版本

iOS 15.0+, iPadOS 15.0+, macOS 13.0+ Beta, Mac Catalyst 15.0+

相关用法


注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Optional listSectionSeparatorTint(_:edges:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。