knthmn
03/12/2021, 7:51 AMLazyColumn()
), I sometimes want to extract several items in a function. So I define
fun LazyListScope.FooSection(...) { items.... }
and use it in my lazy lists
LazyColumn { FooSection(...) }
However Android Studio complains the naming since FooSection
is not a composable, I am wondering if this is not something I should do at the first place.Andrey Kulikov
03/12/2021, 2:00 PM