Return Value 戻り値
A view with the specified color
applied to the system cell.
指定のcolor
をシステムセルに対して適用されたあるビュー。
Availability 有効性
Technology
A view with the specified color
applied to the system cell.
指定のcolor
をシステムセルに対して適用されたあるビュー。
color
Use list
to set the underlying row background color in a list.
list
を使うことで、基礎をなす行背景色をあるリストにおいて設定してください。
In the example below, the Flavor
enumeration provides content for list items. The SwiftUI List
builder iterates over the Flavor
enumeration and extracts the raw value of each of its elements using the resulting text to create each list row item. After the list builder finishes, the list
modifier sets the underlying row background color to the Color
you specify.
下の例において、Flavor
列挙はリスト項目それらに対する内容を提供します。SwiftUI List
ビルダー(建造者)は、Flavor
列挙のすべてにわたって反復します、そしてその要素のそれぞれの生の値をこの結果テキストを使って抽出することで各リスト行項目を作成します。リストビルダーが完了した後、list
修飾子は、基礎をなす行背景色をあなたが供給するColor
へと変更します。
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)
.listRowPlatterColor(.green)
}
}
}
}