Jul 31, 20212 min1. JetPack Compose IntroductionWhat’s JetPack Compose? Jetpack Compose is a modern toolkit for building native Android UI. Jetpack Compose simplifies and accelerates UI...
Jul 28, 20211 minError - Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8. Solution Goto settings -> Build, Execution, Deployment > Build Tools > Gradle > Gradle JDK -> Change to Java 11
Jul 26, 20212 min7. Buttons in Jetpack ComposeIn Jetpack Compose buttons, you need to give two arguments for buttons. The first argument as onClick callback and another one is your...
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 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...