코딩하는 쨈이

[SwiftUI] Keyboard가 올라오면 button과 text 배치가 깨지는 현상 본문

쨈, Study/ː SwiftUI

[SwiftUI] Keyboard가 올라오면 button과 text 배치가 깨지는 현상

정쨈 2024. 2. 28. 13:53
HStack {
                    Text("계정이 없으신가요?")
                        .foregroundStyle(Color.DarkGray1)
                        .font(.footnote)
                    
                    Button {
                        
                    } label: {
                        Text("회원가입")
                            .underline()
                            .bold()
                            .font(.footnote)
                    }
                }
                .padding(.vertical, -100)