[Mission] 뇽 week9 나이키앱 마이페이지 compose#94
Open
chrry03 wants to merge 8 commits into
Open
Conversation
hw4nx02
approved these changes
Jun 2, 2026
hw4nx02
left a comment
There was a problem hiding this comment.
9주차 피드백
안녕하세요 뇽🍒! 축제 지나고 기말 시즌이 왔네요... 기말도 화이팅이고 시험 끝나고 봅시다!
총평
전반적으로 UI 요구사항에 맞추어 잘 구현해주셨습니다. 또한 구조적으로 아키텍처를 잘 설계해주신 것이 눈에 띄네요!
리뷰
Good!
1. 구조적인 패키지 분리와 아키텍처 설계
data/api, data/repository, domain/model, feature/profile 등 레이어별로 패키지를 깔끔하게 분리하여 가독성과 유지보수성을 높였습니다. 이를 통해 MVVM 패턴에 맞게 데이터 소스, 리포지토리, 뷰모델, UI 레이어를 명확히 구분하여 프로젝트가 커지더라도 쉽게 확장할 수 있는 좋은 구조를 갖추었다고 볼 수 있을 것 같습니다.
To Improve
1. 팔로워 영역 빈 경우
현재 ProfileScreen에서 네트워크 에러가 발생하는 경우까지 고려해서 구현해주셨습니다. 그것을 보니 팔로잉 리스트가 비었을 경우도 생각해보면 좋을 것 같다는 생각이 들더군요. 예를 들어, 팔로잉 리스트 컴포저블에 아래와 같은 코드를 추가하는 것을 고려해볼 수 있을 것 같습니다.
if (users.isEmpty()) {
// 빈 상태 알리는 UI
return
}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌 PR 제목
✅ 변경 사항
📷 영상 및 스크린샷
week9.mp4
🔗 알게 된 사항
📝 질문 사항