Jetpack Compose themes

Themes are an essential part of application development as they provide a unique user experience. I will explain how to achieve this goal using Jetpack Compose -the new Android UI toolkit-.

Lists using LazyColumn in Jetpack Compose

Before Jetpack Compose, we used to create a RecyclerView and an Adapter to show a large set of lists. Now, we can use LazyColumn or LazyRow to show a large set of lists vertically or horizontally with few lines of code as we will demonstrate in this blog.