프로필 상단 탐색 사용성을 개선한다

This commit is contained in:
Yu Sung
2026-02-09 17:24:54 +09:00
parent 5e0899419e
commit 7cba6de2fc

View File

@@ -387,6 +387,8 @@ struct UserProfileView: View {
Image("ic_back") Image("ic_back")
.resizable() .resizable()
.frame(width: 20, height: 20) .frame(width: 20, height: 20)
.frame(minWidth: 44, minHeight: 44)
.contentShape(Rectangle())
} }
Spacer() Spacer()
@@ -414,7 +416,8 @@ struct UserProfileView: View {
} }
} }
.padding(.top, proxy.safeAreaInsets.top) .padding(.top, proxy.safeAreaInsets.top)
.padding(.horizontal, 24) .padding(.leading, 12)
.padding(.trailing, 24)
.frame(height: proxy.safeAreaInsets.top + 50) .frame(height: proxy.safeAreaInsets.top + 50)
} }