top of page
Sep 20, 20215 min read
Jetpack Compose Animations
Animations are fundamental for mobile applications. It gives smooth user experience to end users. Jetpack Compose has various animation...
30,387
Aug 11, 20211 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...
10,974
Jul 27, 20212 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...
22,478
Jul 26, 20214 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,...
24,394
Jul 21, 20213 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...
30,032
Jul 20, 20212 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...
52,625
Jul 19, 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,...
58,957
bottom of page