State var showAlert = false var body: some View { Button(action: { self.showAlert = true }) { Text("Show Alert") } .presentation($showAlert) { Alert(title: ...
確定! 回上一頁