-
Notifications
You must be signed in to change notification settings - Fork 3
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
[AN] feat: 강아지 선택 기능 구현 #90
Conversation
Test Results3 tests 3 ✅ 0s ⏱️ Results for commit e84afd2. ♻️ This comment has been updated with latest results. |
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.
수고많았습니다!!
data class DogSelectUiModel( | ||
val id: Long, | ||
val name: String, | ||
val profileImage: String, | ||
) : Serializable { |
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.
혹시 @serializable로 바꿀 수 있을까요? import java에서 kotlin으로 하는게 안정성 면에서 좋을거 같아서요..!
머싯당 |
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.
고생했어요!
private fun loadMyDogs() = | ||
viewModelScope.launch { | ||
delay(1000) | ||
_dogs.value = | ||
listOf( | ||
DogSelectUiModel( | ||
id = 0L, | ||
profileImage = "", | ||
name = "강아지 1", | ||
), |
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.
delay를 따로 준 이유가 있나요??
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_recording_20240717_150555.mp4