Afzal Najam
11/01/2021, 9:15 PMverticalScroll modifier?
For example in the Bloom AndroidDevChallenge app home screen.Colton Idle
11/01/2021, 9:49 PMAfzal Najam
11/01/2021, 9:52 PManimateItemPlacement Modifier with this setup.nglauber
11/01/2021, 11:49 PMLazyColumn.
for static items, use item function and for list items, use items function… 🤷♂️
LazyColumn {
item { YourHeader() }
item { AnotherStaticItem() }
items(yourList) { YourListItem(it) }
item { OneMoreStaticItem() }
}Colton Idle
11/02/2021, 11:09 PMAfzal Najam
11/02/2021, 11:15 PManimateItemPlacement modifier to get into a release to try it 😄