Skip to content

Commit

Permalink
Merge pull request #141 from SOPT-all/fix/#140-HomeViewErrorFix
Browse files Browse the repository at this point in the history
Fix/#140 home view error fix
  • Loading branch information
Nya128 authored Jan 25, 2025
2 parents 2c83628 + 0a5fff2 commit 8cb8c93
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ struct SearchTextField: View {

ZStack {
TextField(
"\(state.rawValue) 검색하세요.",
"\(state.rawValue) 검색하세요.",
text: $inputText
)
.disabled(isButton)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ struct SignupView: View {
showLottieAnimation()
}
}

.onTapGesture {
hideKeyboard()
}
.customNavigationBar(
showBackButton:
!(currentStep == .profileSelection
Expand Down

0 comments on commit 8cb8c93

Please sign in to comment.