How to Implement LazyColumn in Jetpack Compose?
In this article, we’ll learn how to implement LazyColumn in Jetpack Compose. If you are familiar with XML, it is the RecyclerView for displaying the items vertically. Prerequisites: What is LazyColumn in Jetpack Compose? LazyColumn is used to display a vertically scrolling list. It only renders the currently visible items. As a result, it is … Read more