fix: 首页骨架屏不显示搜索框
This commit is contained in:
parent
f00a79ebc3
commit
4fec7205da
|
|
@ -518,12 +518,18 @@ private fun HomePageSkeletonScreen(
|
|||
listSingle: Boolean,
|
||||
gridCells: GridCells
|
||||
) {
|
||||
val context = LocalContext.current
|
||||
LazyVerticalGrid(
|
||||
columns = gridCells,
|
||||
contentPadding = PaddingValues(bottom = 12.dp),
|
||||
modifier = Modifier
|
||||
.fillMaxSize(),
|
||||
) {
|
||||
item(key = "SearchBox", span = { GridItemSpan(maxLineSpan) }) {
|
||||
SearchBox(modifier = Modifier.padding(bottom = 12.dp)) {
|
||||
context.goToActivity<NewSearchActivity>()
|
||||
}
|
||||
}
|
||||
item(key = "TopForumHeaderPlaceholder", span = { GridItemSpan(maxLineSpan) }) {
|
||||
Column {
|
||||
Header(
|
||||
|
|
|
|||
Loading…
Reference in New Issue