-
Notifications
You must be signed in to change notification settings - Fork 1
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
[FEAT/#221] 마이페이지 뷰 / 서버통신 구현 #225
Conversation
into feat/#221-my-page
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.
확인했습니다~~!!
@@ -63,14 +65,24 @@ fun MyPageRoute( | |||
) | |||
} | |||
|
|||
DisposableEffect(lifecycleOwner) { |
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.
네! 맞습니당 화면이 꺼질 때 원래 상태바 색깔로 바꾸기 위해 넣어주었습니다!
onOpinionClick: () -> Unit, | ||
onServiceClick: () -> Unit, | ||
onPersonalClick: () -> Unit, | ||
onEditClick: () -> Unit = {}, |
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.
서버 통신 실패 시 화면을 그리고자 했는데, Screen에 기본값으로 넣어두지 않으면 성공 시 화면에 사용하는 모든 것들을 다 연결을 해줘야 해서 선택적으로 사용하고자 기본값을 다 추가하였습니다!
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.
최고에욤👍🏻👍🏻👍🏻
DEFAULT(drawableResId = R.drawable.ic_terning_profile_default, stringValue = "default"); | ||
|
||
companion object { | ||
fun fromString(value: String): ProfileImage = when (value) { |
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.
이렇게 관리하는거 좋네요!! 배워갑니당ㅎㅎ
@@ -63,14 +65,24 @@ fun MyPageRoute( | |||
) | |||
} | |||
|
|||
DisposableEffect(lifecycleOwner) { |
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
📢 To Reviewers