Animated Dialogs & Material Dialog For JetpackComposeA Material Dialog & Animated Library ...DependencyStep 1: Add the JitPack repository to your build fileAdd it in your root build.gradle at the end of repositories:allprojects { repositories { ... maven { url 'https://jitpack.io' } } }Step 2: Add the dependencydependencies { implementation 'com.github.ehsannarmani:ComposeDialog:latest_version' }UsageDialog( visible =trueorfalse, duration =2000, position=Alignment.BottomCenter, dialogEnterAnim = expandHorizontally(), dialogExitAnim = shrinkHorizontally(), onEnd = { ... }, ... ) { Text( text ="...", color =Color.White, fontSize =13.sp, textAlign =TextAlign.Justify ) }