實例方法
list
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+
相關用法
- Swift Never listSectionSeparator(_:edges:)用法及代碼示例
- Swift Never listRowSeparatorTint(_:edges:)用法及代碼示例
- Swift Never listRowSeparator(_:edges:)用法及代碼示例
- Swift Never listRowInsets(_:)用法及代碼示例
- Swift Never listRowBackground(_:)用法及代碼示例
- 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 listSectionSeparatorTint(_:edges:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。