struct ContentView: View { @State var showsAlert = false var body: some View { Button(action: { self.showsAlert.toggle() }) { Text("Show Alert") } ...
確定! 回上一頁