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() ..