Updated Screenshots

This commit is contained in:
Prathamesh More 2022-01-01 12:16:59 +05:30
parent afc309a296
commit ecc04a3c76
20 changed files with 2 additions and 3 deletions

View file

@ -225,7 +225,7 @@ class PlayerAlbumCoverFragment : AbsMusicServiceFragment(R.layout.fragment_playe
private fun showLyrics(visible: Boolean) {
ObjectAnimator.ofFloat(lrcView, View.ALPHA, if (visible) 1F else 0F).apply {
doOnEnd {
lrcView.isVisible = visible
_binding?.lyricsView?.isVisible = visible
}
start()
}