Jetpack Compose Full Screen Dialog with Source Code

Jetpack Compose Full Screen Dialog

This is a Jetpack Compose full-screen dialog design. It shows a “Congratulations! you have won a medal” message with an image. The dialog is made with composables like Surface, Column, Icon, Text, and Button. The Surface needs a child which is the Column. I put everything inside the Column. Its children are arranged at the … Read more

Jetpack Compose Custom Dialog with Source Code

Jetpack Compose Custom Dialog

This is a Jetpack Compose custom dialog design. It shows a delete warning message. It is made with Dialog API. You can download the source code for free below. When you launch the activity, it shows a button with the text “Open Dialog.” If you tap on it, the dialog will show up. The UI … Read more

Custom Alert Dialog in Android Using Jetpack Compose

Jetpack Compose Custom Dialog

This is a custom alert dialog made with Android Jetpack Compose. It is a delete confirmation pop-up box. It has two buttons positive and negative. You can download the source code below. The Android custom alert dialog uses the Dialog, Surface, Icon, Text, and Box APIs. It doesn’t follow material guidelines. The Box layout is … Read more

Android Loading Dialog using Jetpack Compose

Android Jetpack Compose Switch

This is a loading dialog made with Android Jetpack Compose. It uses two APIs – Dialog and CircularProgressIndicator to draw the custom UI on the screen. You can download the source code for free below. It uses Dialog API to get its functionality like open and close animation, and background overlay color. Next, it creates … Read more

Popup Dialog in Android Using Jetpack Compose

jetpack compose custom dialog

This is a Popup dialog made with Android Jetpack Compose. It is a 2FA (2-factor authentication or multi-factor authentication) dialog box. It asks the user whether to enable 2FA or not. There are two buttons – positive and negative. I have added onClick on both of them. The Android popup dialog is made with Surface, … Read more