If you want to create a simple top bar in compose here is the code breakdown.
Android
LazyColumn with click event
Here are going to create LazyColumn with click event. Below is the code breakdown
Search Bar in Compose
Creating a search bar in compose is a little bit complex but don’t worry here is the complete code breakdown
Circular Progress Bar in Compose
To create a Circular Progress Bar in Compose we just have to use CircularProgressIndicator below is the code breakdown You just have to simply call …
How to navigate one screen to another with data in compose
We have a navigation compose library to navigate between screens and send data. Below is the breakdown of how to use this library. 1:- Import …
Retrofit Setup in compose MVVM
1:- Add the relevant library Add library for Retrofit Add library for Hilt Plugin Dependencies In top-level module For Navigation For Coroutine For Coroutine Lifecycle …
Making Your Own Custom Live Data
Creating Custom LiveData in Android: A Simple Guide If you’re diving into Android development, you’ve probably heard of LiveData. But did you know you can …
LiveData Questions You Need To Prepare
Hello Dev, Here is the list of the most frequently asked questions of live data in interviews with answers. As we know live data is …
Naming conventions in Kotlin
Kotlin is a very fast-growing programming language in the Software Development Industries. It is gaining attention among developers because of its simplicity, safety, and interoperability …
Declaration and Initialization of Array in Kotlin
In this article we will discuss about array declarations and initialization. In kotlin we have savers way to define and initialize array like arrayOf() function, …