Sep 20, 20215 minJetpack Compose AnimationsAnimations are fundamental for mobile applications. It gives smooth user experience to end users. Jetpack Compose has various animation...
Aug 11, 20211 minJetpack Compose Preview not showingIt's most common bug in Jetpack Compose. You can solve this issue by following these simple steps: Use latest version dependency. I am...
Jul 27, 20212 min5. TextStyle in JetPack ComposeIntroduction: Text plays important role in mobile/web applications. We can present the details to the user using Text. Let's assume If we...
Jul 26, 20214 min6. Jetpack Compose ModifiersWhat are Modifiers in Jetpack Compose? Modifier elements decorate or add behavior to Compose UI elements. For example, backgrounds,...
Jul 21, 20213 min12. Themes in Jetpack ComposeIf you create a new Jetpack compose project, you will see ui.theme package. It contains the following classes. Color.kt - for custom...
Jul 20, 20212 min13. Card in Jetpack ComposeWhat's Card? Card is a container, we can place single composable in card. It has elevation property, we can display shadow effect using...
Jul 19, 20212 min14. 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,...