기본 콘텐츠로 건너뛰기

11월, 2021의 게시물 표시

SwiftUI, Alert, example

  @State private var showingAlert = false             var body: some View {                                   Button(action:{                     self .showingAlert = true                                      }){                                          Text("Btn")                                       }.alert(isPresented: $showingAlert) {                      Alert(title: Text("Alert"))                    }                  }