Category: Jetpack Compose
-
Get the Current Location On Jetpack Compose
Are you want to get the current location on android in jetpack compose? In this tutorial, I have explained how to get the current location
-
Implementing TabLayout with ViewPager On Jetpack compose
TabLayout allows us to quickly navigate between related content on a single page, which appears toward the top of the screen.
-
Easy animation on splash screen In android using jetpack compose
Every android application contains a splash screen to display the app name and app version at the launch of the application. Also, it’s used to load initial data for the application in the background. So the data will be ready before moving to the main screen. The splash screen is one of the main screens […]
-
Create custom dialog in jetpack compose
In this tutorial, I am going to explain how to create a dialog in jetpack compose android in very simple steps. In this example, I have created multiple alert dialogs with different use cases. let’s get started with creating a simple alert dialog creation. To learn more about the jetpack compose check out my other […]
-
How to capture images using the camera in jetpack compose
In this tutorial, I am going to explain how to capture images in a jetpack compose using a device camera. Also, I have added code to asking runtime permissions for the camera. To get started with taking photos using the camera, First need to add camera permission on the manifest.xml file. Get File URI From […]
-
How to pick Image from gallery in jetpack compose
In this tutorial, I am explaining how to pick images from a gallery in jetpack compose and display the picked images in a Lazy grid view. Before getting started into details. if you are new to jetpack compose, I strongly recommend you learn the basics of jetpack compose for a better understanding of this example. […]
-
Jetpack compose – Retrofit with Recyclerview
In this post, I am going to explain about using the retrofit and recyclerview in jetpack compose with MVVM pattern. Everybody knows that the Jetpack Compose is a modern toolkit designed to simplify UI development. Before jumping into this example on retrofit and recyclerview. I have created posts on jetpack compose components, layouts, modifiers, and […]
-
Getting started with jetpack compose – Theming
Jetpack Compose implements Material Theming and supports a dark theme by default. You can customize color, typography, and shape theming values to fit your product’s brand, and get access to convenient functions for working with a system of dark themes (like isSystemInDarkTheme, lightColors, and darkColors). The default MaterialTheme from the documentation looks like this: We […]