We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8411d4e commit 87a5e69Copy full SHA for 87a5e69
2 files changed
CERTI-iOS/Presentation/CertificateDetail/Components/CommentTextField.swift
@@ -70,6 +70,7 @@ struct CommentTextField: View {
70
RoundedRectangle(cornerRadius: 18)
71
.fill(.grayscale100))
72
.padding(.horizontal, 20)
73
+ .blackCursor()
74
75
}
76
CERTI-iOS/Presentation/CertificateDetail/View/CertificateCommentView.swift
@@ -65,9 +65,12 @@ struct CertificateCommentView: View {
65
await viewModel.loadNextComments()
66
67
68
+ .onTapGesture {
69
+ hideKeyboard()
+ }
CommentTextField(commentText: $viewModel.commentText, onSendTapped: { }, textFieldState: !viewModel.showFailToBeAcquired || !viewModel.showFailAcquired ? .fieldOn : .fieldLock)
- .padding(.top, 20)
+ .padding(.vertical, 20)
0 commit comments