Behind the Badge: My Journey towards CSM
Agile - Insights and Experiences
Search for a command to run...
Agile - Insights and Experiences
The idea behind writing this experience is to caution and help myself/others in similar situations. If it's of use to even one person then I would consider the purpose is served! Here is the story... Lost part!! I was experimenting with multiple serv...
Date and time datatypes are widely used in programming. This article is to quickly summarize the commonly used date and time operations in kotlin programming. Kotlin provides several features to work with dates. Most commonly used classes are java.ti...
Links are strings of characters that will take us to some place when it is clicked. There are 3 types of links which you can create in your android app for better user interaction and secure navigation. With the help of links users can land directly ...
What is Dependency Injection? It is a common programming need that classes reference/ inherit from other classes. Dependency Injection is one of the ways through which a class can take reference of another class. Why do we need DI? DI approach helps ...
In this article, let us explore the tools provided by Compose to accelerate the development process. Jetpack Compose leverages android studio tooling support to provide faster development and better debugging facilities. Preview The @Preview annotati...

In this article let us learn about the states in Jetpack Compose. State is a value that can change. It can be a variable, database value or even the UI elements which respond to events. Keeping track of the state of a variable or the UI element is mo...

In this article will learn about few more UI components which are widely used in Android app development. Search Bar To implement a search bar in the app UI, we can use Material component "Text Field". Inside the composable function implement basic T...

In the last 2 articles related to Jetpack compose we learnt about what Compose is, how to set it up for an existing app and the look and feel of composables with simple example. In this article, we will learn about the features available in Compose t...
