Downgrade Compose to 1.1.0-beta02

This commit is contained in:
MM20
2021-12-10 22:47:22 +01:00
parent 6fbb2f3164
commit f38c03d9f4
3 changed files with 3 additions and 3 deletions
@@ -110,7 +110,7 @@ fun LazyListScope.SearchableGrid(
Row(
modifier = Modifier
.requiredHeight(100.dp)
.animateItemPlacement()
//.animateItemPlacement()
.zIndex(
animateFloatAsState(
if (focusedItem != -1 && rowIndex == focusedItem / columns) 100f else 0f
@@ -23,5 +23,5 @@ fun LazyListScope.SearchableList(
@OptIn(ExperimentalFoundationApi::class)
@Composable
fun LazyItemScope.ListItem(item: Searchable) {
SearchableItem(item = item, modifier = Modifier.animateItemPlacement())
SearchableItem(item = item, modifier = Modifier/*.animateItemPlacement()*/)
}