-
Notifications
You must be signed in to change notification settings - Fork 2
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
[UI/#50] 프로필 뷰 구현 #57
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.
너무 잘했어요~~~
data class ProfileMock( | ||
val profileTitle: String, | ||
val profileSubTitle: String, | ||
val tags: List<String>, | ||
val profileBoxInfo: List<BoxInfo>, | ||
) { | ||
data class BoxInfo( | ||
val title: String, | ||
val first: String, | ||
val second: String, | ||
val third: String, | ||
) | ||
} |
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.
내부 변수명만 다른 완벽히 같은 클래스가 이미 존재하네용~
그걸 재활용 하는 것이 좋아보입니다!!
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.
감사합니답 재활용하도록 수정했습니다~~~!!!!!!!👍👍
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.
LGTM...^^
private val profileViewModel by viewModels<ProfileViewModel>() | ||
override fun onCreate(savedInstanceState: Bundle?) { |
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.
줄바꿈을 권장합니다 ~
…into ui/#50-create-profile
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.
다시 LGTM ~
app/src/main/AndroidManifest.xml
Outdated
|
||
|
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.
빈줄이 많네요~
⛳️ Work Description
📸 Screenshot
Screen_Recording_20240110_050901_doorip.mp4
📢 To Reviewers