The current version of jetpack compose is alpha-09, but couldn't find the onClickListener for LazyColumnFor(RecyclerView/Listview).If anyone have any update, it would be much appreciated.
You need to make the content clickable. For ex:
LazyColumnFor(items) { item -> Box(Modifier.clickable(onClick = { //handle onClick })) { // Your item layout } }
2.1m questions
2.1m answers
60 comments
57.0k users