在swiftUI
我发现了Alert
类型。但我想知道如何用方法来展示它presentation
。
初始化一个Alert
非常容易。但是如何使用绑定呢?
struct ContentView : View {
var body: some View {
Button(action: {
// Don't know how to use the `binding` below
presentation(binding, alert: {
Alert(title: Text("Hello"))
})
}, label: {
Text("asdf")
})
}
}
绑定是类型Binding<Bool>