pref: 屏蔽管理页面空提示
This commit is contained in:
parent
e3199c1d8d
commit
79088ecf36
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue