Deep_Dev
article thumbnail
[SwiftUI] Custom Alert View
🍎 iOS/SwiftUI 2024. 6. 16. 21:37

✅ Custom Alert   해커톤을 할 때,이런 뷰를 구현해야했었다. 이것은 기존의 Alert를 Custom하면 나오는것이다.  import SwiftUIstruct ContentView: View { @State private var isAlertPresented = false var body: some View { ZStack { VStack { Button("Show Custom Alert") { isAlertPresented.toggle() } .padding() ..