Confirmation Dialog - 하단 메뉴
·
SwiftUI
titleKey: dialog 에 대해 설명할 수 있는 제목isPresented: 설정된 데이터의 값이 바뀌게 되면 confimationDialog View 가 나타납니다.titleVisibility: 제목의 투명도(가시성) 설정actions: 어떤 작업을 할지 Content 를 설정합니다.struct ContentView: View { @State private var showDialog = false var body: some View { Button("Tap to show alert") { showDialog = true } .confirmationDialog("Email", isPresented: $showDialog) { ..