It's a simple fullScreen Loader AlertDialog.
For example please check app module's MainActivity.java class
FullScreenLoadingDialog required minSdkVersion 21 and androidx
Add it in your project level build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Add the dependency in your app.gradle file:
dependencies {
implementation "com.github.fahim44:FullScreenLoadingDialog:{latest_version}"
}