pref: 屏蔽管理页面空提示

This commit is contained in:
HuanCheng65 2023-03-12 15:45:13 +08:00
parent e3199c1d8d
commit 79088ecf36
No known key found for this signature in database
GPG Key ID: E9031EF91A805148
1 changed files with 3 additions and 3 deletions

View File

@ -204,16 +204,16 @@ fun BlockSettingsPage(
isEmpty = items.isEmpty(),
isError = false,
isLoading = isLoading,
onReload = { viewModel.send(BlockSettingsUiIntent.Load) },
loadingScreen = {
LazyColumn(modifier = Modifier.fillMaxSize()) {
items(4) {
BlockItemPlaceholder()
}
}
}
},
modifier = Modifier.fillMaxSize()
) {
LazyColumn {
LazyColumn(Modifier.fillMaxSize()) {
items(items, key = { it.id }) {
LongClickMenu(menuContent = {
DropdownMenuItem(onClick = {