룰렛 설정 입력 가시성과 프로필 메뉴 레이아웃 개선

룰렛 설정에서 입력 필드 포커스 시 항목을 중앙으로 이동한다.
키보드에 가려지지 않도록 입력 가시성을 높인다.
프로필 메뉴 오버레이의 하단 안전영역 패딩을 제거한다.
This commit is contained in:
Yu Sung
2026-02-09 17:43:45 +09:00
parent 7cba6de2fc
commit 7f703024d8
4 changed files with 57 additions and 10 deletions

View File

@@ -541,7 +541,6 @@ struct UserProfileView: View {
viewModel.isShowPopup = true
}
.padding(.top, proxy.safeAreaInsets.top)
.padding(.bottom, proxy.safeAreaInsets.bottom)
.padding(.trailing, proxy.safeAreaInsets.trailing)
.padding(.leading, proxy.safeAreaInsets.leading)
}
@@ -549,7 +548,6 @@ struct UserProfileView: View {
if isShowMenuSettings {
MenuSettingsView(isShowing: $isShowMenuSettings)
.padding(.top, proxy.safeAreaInsets.top)
.padding(.bottom, proxy.safeAreaInsets.bottom)
.padding(.trailing, proxy.safeAreaInsets.trailing)
.padding(.leading, proxy.safeAreaInsets.leading)
}