목적: SwiftUI 에서 TextInput 이 있는 Alert 를 띄워주기 위함. 결론: 기본적으로 아직까지는 SwiftUI 에서 커스텀 팝업을 만들려면 아래 링크에 소개된 방법 외에는 어려워보인다. 하지만 목적에 언급된 TextInput 이 있는 Alert 의 경우는 다음과 같이 하면 된다. struct ContentView: View { @State private var presentAlert = false @State private var username: String = "" @State private var password: String = "" var body: some View { Button("Show Alert") { presentAlert = true } .alert("Login", ..
SwiftUI Menu https://seons-dev.tistory.com/entry/SwiftUI-Menu-%EB%B2%84%ED%8A%BC%EC%9D%84-%EB%88%8C%EB%A0%80%EC%9D%84-%EB%95%8C-%EB%A9%94%EB%89%B4%EB%A5%BC-%ED%91%9C%EC%8B%9C SwiftUI Menu 로 Dropdown Menu 만들기 https://www.youtube.com/watch?v=dCt4SBNSfE4 https://medium.com/@zhuoshengjiang_26468/how-to-implement-a-dropdown-button-in-swiftui-239cf1bd8e8c ios pulldown button (생각하는 그것) & popup button (..