From f8f4f4b5f2ee5ac0ebd5c528e7c1f7495423e3d6 Mon Sep 17 00:00:00 2001 From: hee Date: Sat, 25 Jan 2025 12:49:49 +0900 Subject: [PATCH 1/2] [Fix/#140] Button Error fix --- .../Gongbaek_iOS/Presentation/Signup/View/SignupView.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Gongbaek_iOS/Gongbaek_iOS/Presentation/Signup/View/SignupView.swift b/Gongbaek_iOS/Gongbaek_iOS/Presentation/Signup/View/SignupView.swift index ca6ca5e..1eb6793 100644 --- a/Gongbaek_iOS/Gongbaek_iOS/Presentation/Signup/View/SignupView.swift +++ b/Gongbaek_iOS/Gongbaek_iOS/Presentation/Signup/View/SignupView.swift @@ -66,6 +66,10 @@ struct SignupView: View { showLottieAnimation() } } + + .onTapGesture { + hideKeyboard() + } .customNavigationBar( showBackButton: !(currentStep == .profileSelection From 0a5fff246918c47fe015df9c3f830ed08df94485 Mon Sep 17 00:00:00 2001 From: hee Date: Sat, 25 Jan 2025 13:19:11 +0900 Subject: [PATCH 2/2] =?UTF-8?q?[Fix/#140]=20text=20line=202=EC=9E=90=20?= =?UTF-8?q?=EC=9C=A0=EC=A7=80=20=EC=9C=84=ED=95=9C=20fixedSize=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20=EC=99=84=EB=A3=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Global/Component/TextField/SearchTextField.swift | 2 +- .../Signup/View/SelfIntroductionWritingView.swift | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Gongbaek_iOS/Gongbaek_iOS/Global/Component/TextField/SearchTextField.swift b/Gongbaek_iOS/Gongbaek_iOS/Global/Component/TextField/SearchTextField.swift index 11c649b..3a6d229 100644 --- a/Gongbaek_iOS/Gongbaek_iOS/Global/Component/TextField/SearchTextField.swift +++ b/Gongbaek_iOS/Gongbaek_iOS/Global/Component/TextField/SearchTextField.swift @@ -23,7 +23,7 @@ struct SearchTextField: View { ZStack { TextField( - "\(state.rawValue)을 검색하세요.", + "\(state.rawValue)를 검색하세요.", text: $inputText ) .disabled(isButton) diff --git a/Gongbaek_iOS/Gongbaek_iOS/Presentation/Signup/View/SelfIntroductionWritingView.swift b/Gongbaek_iOS/Gongbaek_iOS/Presentation/Signup/View/SelfIntroductionWritingView.swift index 86eeb95..91c7d4e 100644 --- a/Gongbaek_iOS/Gongbaek_iOS/Presentation/Signup/View/SelfIntroductionWritingView.swift +++ b/Gongbaek_iOS/Gongbaek_iOS/Presentation/Signup/View/SelfIntroductionWritingView.swift @@ -17,15 +17,16 @@ struct SelfIntroductionWritingView: View { subtitle: "연락처나 SNS 입력이 아닌,\n자신을 소개하는 글을 적어주세요.", highlightSubtitleText: "자신을 소개하는 글" ) - .frame(maxWidth: .infinity, alignment: .leading) .padding(.top, 54) .padding(.horizontal, 16) - .padding(.bottom, 24) + .frame(maxWidth: .infinity, minHeight: 75, alignment: .leading) + .fixedSize(horizontal: false, vertical: true) CustomTextEditor( text: $viewModel.introduction, isSignupView: true ) + .padding(.top, 24) .padding(.horizontal, 16) Spacer()