This commit is contained in:
kunfei
2022-05-21 13:08:56 +08:00
parent 0e38e82a47
commit 9b57e60d3a
2 changed files with 2 additions and 2 deletions
@@ -41,7 +41,7 @@ class RemoteBookActivity : VMBaseActivity<ActivityRemoteBookBinding,RemoteBookVi
launch {
viewModel.dataFlow.conflate().collect { remoteBooks ->
binding.refreshProgressBar.isAutoLoading = false
binding.tvEmptyMsg.isGone = remoteBooks.isEmpty()
binding.tvEmptyMsg.isGone = remoteBooks.isNotEmpty()
adapter.setItems(remoteBooks)
}
}