Post

Replies

Boosts

Views

Created

SwiftUI: How to set alert message color?
example code import SwiftUI struct ContentView: View {   @State var showAlert = false       var body: some View {     Button(action: {       showAlert = true     }) {       Text("OK")     }.alert(isPresented: $showAlert) {       Alert(         title: Text("test"),         message: Text("alert alert alert").foregroundColor(.red)       )     }   } }
1
0
1.9k
Aug ’22