How to Add Space Between LazyRow Items in Android Jetpack Compose
|

How to Add Space Between LazyRow Items in Android Jetpack Compose

Android Jetpack Compose is revolutionizing how we create UIs on Android. The old view-based system is making way for a more declarative and more intuitive Composable-based system. In this blog post, we will focus on LazyRow, a Composable that can be used to create horizontal lists. Specifically, we’ll discuss how to add space between items…

How to Create Horizontal List with LazyRow in Android Jetpack Compose
|

How to Create Horizontal List with LazyRow in Android Jetpack Compose

In Android development, creating a horizontal list was traditionally done using RecyclerView with a LinearLayoutManager set to horizontal orientation. With Jetpack Compose’s introduction, this process is made simpler and more intuitive with LazyRow. In this blog post, we will learn how to create a horizontal list using the LazyRow Composable. To create a horizontal list…