The Util Designer
SwiftUI Alert Views的使用
xcode 13.4.1, swift 5.5, iOS 15.4
2022-08-17
SwiftUI增加了一個很方便的view modifier向使用者顯示確認的對話框。
1. 配合state bool變量,和alert來告訴使用者重要的信息:
import SwiftUI

struct AlertExample: View {
    @State private var isPresentingAlert: Bool = false
    var body: some View {
        Button {
            isPresentingAlert = true
        } label: {
            Text("Show alert")
        }
        .alert("This is an important message!", isPresented: $isPresentingAlert) {
        }

    }
}