2024-12-23
Button{
.alert("title", isPresented: $showAlert){
} message: {
Text("This is the alert message")
}
.alert("Some Alert", isPresented: $showAlert) {
Button("Cancel", role: .cancel){
}
Button("Delete", role: .destructive) {
backgroundColor = .red
}
} message: {
Text("What do you want?")
}