No código a seguir, não importa onde eu anexe o segundo, .actionSheet
não consigo fazê-lo funcionar. Meu entendimento era que, desde que estivessem ligados a pontos de vista diferentes, funcionaria, mas essa teoria não parece ser verdadeira.
struct ContentView: View {
@State private var showFirstActionSheet = false
@State private var showSecondActionSheet = false
var body: some View {
VStack{
VStack{
Button("Show Fist Action Sheet"){
showFirstActionSheet = true
}
.actionSheet(isPresented: $showFirstActionSheet) {
ActionSheet(title: Text("First Action Sheet"), message:
Text("Some message!"),
buttons: [
.destructive(Text("Cancel")){
},
.default(Text("Yes")){
doSomething()
},
.cancel()
])
}
}
}
.actionSheet(isPresented: $showSecondActionSheet) {
ActionSheet(title: Text("Second Action Sheet"), message:
Text("Some message!"),
buttons: [
.destructive(Text("Cancel")){
},
.default(Text("Yes")){
},
.cancel()
])
}
}
func doSomething(){
showSecondActionSheet = true
}
}
Tentei com dois botões diferentes e funcionou, mas no meu caso só tenho um botão que aciona o primeiro e o segundo é acionado pela primeira actionSheet.
Alguma ideia de qual seria a melhor maneira de lidar com isso?