📜  swiftui 更改表单部分颜色 - Swift 代码示例

📅  最后修改于: 2022-03-11 15:00:59.434000             🧑  作者: Mango

代码示例1
Form {
    Section(header: Text("User Details")) {
         Text("Name:").background(Color.red)
         Text("Email:").foregroundColor(Color.red)
    }.listRowBackground(Color.green)
}