-
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
검색 화면 UX 개선, more 버튼시 출력 #337
Conversation
@@ -60,16 +59,19 @@ class SearchViewModel @Inject constructor( | |||
} | |||
|
|||
private fun observeKeyword() { | |||
_keyword.filter { it.isNotBlank() } |
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.
notBlank 필터링 하는 건 괜찮았던 거 같은데, 지운 이유가 있을까?
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.
filter가 있으면 fetchSearchedMusics가 호출�이 안되서 옮겼습니다~
fun playMusic(music: Music) { | ||
val newPlaylist = CurrentPlaylist( | ||
startMusic = music, | ||
musics = listOf(music), | ||
) | ||
|
||
scope.launch { _currentPlaylist.send(newPlaylist) } | ||
} |
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!!
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.
고생하셨습니당
@@ -19,6 +19,9 @@ | |||
android:layout_width="0dp" | |||
android:layout_height="44dp" | |||
android:layout_margin="@dimen/margin_horizontal" | |||
android:inputType="text" | |||
android:maxLines="1" | |||
android:imeOptions="actionDone" |
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.
actionDone 넣어 준 것 좋네요! action Search 를 넣어도 좋을 것 같아여 (나중에 해도됨)
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.
actionSearch보다 actionDone이 UX가 더 좋아서, 일부러 actionDone 넣었습니다~
Issue
Overview