We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
리팩토링 할 코드에 대한 설명
url이 빈 필드일 경우까지 예외처리 해주어야하므로, 다음과 같이 수정해주었습니다.
// MemoCard.swift if let url = profile.profilePicture, !url.isEmpty { if url.count > 0 { Button /* NavigationLink */ { completion(.navigate(profile: profile)) } label: { KFImage(URL(string: url)) .resizable() .scaledToFill() .clipped() .clipShape(.circle) .frame(width: 37,height: 37) .contentShape(Circle()) .cornerRadius(19) } } } else { Image("profileImg") .frame(width: 37,height: 37) .clipShape(.circle) }
The text was updated successfully, but these errors were encountered:
개인적으로 설정 -> 폰트에서 폰트 변경리스트에서 박스를 터치해서 변경이 아닌 그 폰트 항목을 클릭시 변경되는걸로 고치면 편할것같습니다.
Sorry, something went wrong.
오 좋습니다. 해당 부분도 반영해볼게요 :)
xohxe
No branches or pull requests
리팩토링
리팩토링 할 코드에 대한 설명
요구사항
Todo
프로필이미지 없을 때 default 이미지 만들어주기
url이 빈 필드일 경우까지 예외처리 해주어야하므로, 다음과 같이 수정해주었습니다.
The text was updated successfully, but these errors were encountered: