top of page


Jetpack Compose Animations
Animations are fundamental for mobile applications. It gives smooth user experience to end users. Jetpack Compose has various animation...
Sep 20, 20215 min read
Â


Jetpack Compose Preview not showing
It's most common bug in Jetpack Compose. You can solve this issue by following these simple steps: Use latest version dependency. I am...
Aug 11, 20211 min read
Â


5. TextStyle in JetPack Compose
Introduction: Text plays important role in mobile/web applications. We can present the details to the user using Text. Let's assume If we...
Jul 27, 20212 min read
Â


6. Jetpack Compose Modifiers
What are Modifiers in Jetpack Compose? Modifier elements decorate or add behavior to Compose UI elements. For example, backgrounds,...
Jul 26, 20214 min read
Â


12. Themes in Jetpack Compose
If you create a new Jetpack compose project, you will see ui.theme package. It contains the following classes. Color.kt - for custom...
Jul 21, 20213 min read
Â


13. Card in Jetpack Compose
What's Card? Card is a container, we can place single composable in card. It has elevation property, we can display shadow effect using...
Jul 20, 20212 min read
Â


14. Jetpack Compose Progress Indicator (ProgressBar)
Progress Indicator is a widget to indicate some actions are in progress to the user. For long-time operations such as file downloading,...
Jul 19, 20212 min read
Â
bottom of page