Bottom-Dialog
Bottom Dynamic Dialog for Android Projects
Screen Shots
It will be uploaded
Usage
Step 1
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2
Add dependencies in build.gradle.
dependencies {
implementation 'com.github.barisatalay:bottom-dialog:1.0'
}
Step 3 (Use of library)
val view = LayoutInflater.from(applicationContext).inflate(R.layout.item_test, null)
BottomDialog(this)
.setView(view as ViewGroup)
.setCancelable(true)//if you set 'false', then you can access background views. Try it :)
.show()
Contact me
If you have a better idea or way on this project, please let me know, thanks :)