I'm running into an issue that stems from having a button in one action sheet that opens another action sheet attached to a different subview of a ZStack. I'm not sure why, but sometimes the second action sheet appears, and sometimes it doesn't. I thought wrapping the state change code inside a DispatchQueue.main.async { } would run the code on the main thread and thus fix this issue, but SOMETIMES, when the button 'Show AS2' is pressed, the second action sheet does not appear. Any help with this issue is much appreciated.
I have something that looks like this:
I have a normal view with 2 state variables:
@State var showActionSheet1 = false @State var showActionSheet2 = false
The body of the view looks like this:
ZStack {
HStack {
Spacer()
Button(action: {
showActionSheet1 = true
}, label: {
}).actionSheet(isPresented: $showActionSheet1) {
ActionSheet(
title: Text("Select an option"),
buttons: [
.cancel(),
.default(Text("Tap to Do Something")) {
print("Do something")
},
.default(Text("Show AS2")) {
//showing the other action sheet
DispatchQueue.main.async {
showActionSheet2 = true
}
}
]
)
}
}
VStack {
Spacer()
HStack {
Spacer()
Text("Element")
}
}.actionSheet(isPresented: $showActionSheet2) {
ActionSheet(
title: Text("Select an option"),
buttons: [
.cancel(),
.default(Text("Tap to Do Something on second sheet")) {
print("Do something")
},
.default(Text("tap to do something on second sheet 2")) {
//showing the other action sheet
print("Do something 2")
}
]
)
}
}
@Asperi is right. There must be only one .actionSheet per View.
You could implement this by using the ternary operator.
Xcode 14.1 example: