-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
[Feature] #86 미분류 링크 분류 화면 구현 #87
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셧슴미다~~bb 하나 빼고 따로 남길 부분은 없어욤
import pokitmons.pokit.uncategorized.model.UncategorizedScreenState | ||
import javax.inject.Inject | ||
|
||
interface UncategorizedViewModel { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
interface 네이밍에 ViewModel 워딩은 의도된건가욤?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아 etc를 방금봄ㅋㅋㅋㅋ
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
해당 방법으로 한 번 추라이 해보졍
Key Changes
미분류 포킷 분류 화면을 구현하고
LinkCard의 세부 UI를 수정했습니다. (배경색 및 안읽음 표시 수정)
Resolves: #86
PR 유형
어떤 변경 사항이 있나요?
To Reviewers
PR Checklist
PR이 다음 요구 사항을 충족하는지 확인하세요.
Etc.
기존 화면을 구현할 때는Preview를 사용하기 위해서 [화면이름]ScreenContainer에 ViewModel을 받고
[화면이름]Screen에 여러 메서드들을 인자로 전달하는 방식을 사용했는데, 이렇게 하다보니 너무 인자 개수가 많아지는 것 같아서
이번에는 ViewModel을 인터페이스로 선언하여 사용해봤습니다 (UncategorizedViewModel 참고)
이 방식 괜찮은 것 같으면 앞으로 [화면이름]ScreenContainer로 구현한 부분은 모두 ViewModel 인터페이스를 사용하는 방식으로 리펙토링 진행하려고 합니다!