diff --git a/SampoomManagement.xcodeproj/project.pbxproj b/SampoomManagement.xcodeproj/project.pbxproj index 2569986..ba2fc45 100644 --- a/SampoomManagement.xcodeproj/project.pbxproj +++ b/SampoomManagement.xcodeproj/project.pbxproj @@ -284,7 +284,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 3; + CURRENT_PROJECT_VERSION = 4; DEVELOPMENT_TEAM = B9PUAVBBKX; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; @@ -319,7 +319,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 3; + CURRENT_PROJECT_VERSION = 4; DEVELOPMENT_TEAM = B9PUAVBBKX; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; diff --git a/SampoomManagement/Features/User/UI/UpdateProfileBottomSheet.swift b/SampoomManagement/Features/User/UI/UpdateProfileBottomSheet.swift index d2c3975..3460691 100644 --- a/SampoomManagement/Features/User/UI/UpdateProfileBottomSheet.swift +++ b/SampoomManagement/Features/User/UI/UpdateProfileBottomSheet.swift @@ -30,6 +30,15 @@ struct UpdateProfileBottomSheet: View { var body: some View { NavigationView { VStack(spacing: 16) { + Spacer() + // 직급 선택 + Text(StringResources.Setting.editProfile) + .font(.gmarketBody) + .foregroundColor(Color("Text")) + .frame(maxWidth: .infinity, alignment: .leading) + .padding(.horizontal, 16) + .padding(.top, 16) + CommonTextField( value: $userName, placeholder: StringResources.Setting.editProfilePlaceholderUsername, @@ -50,8 +59,6 @@ struct UpdateProfileBottomSheet: View { .padding(.horizontal, 16) .padding(.bottom, 32) } - .navigationTitle(StringResources.Setting.editProfile) - .background(Color.background) } .onAppear { viewModel.onEvent(.initialize(user))