https://github.com/jkaninda/loadingdialog
Android Loading dialog
https://github.com/jkaninda/loadingdialog
Last synced: about 22 hours ago
JSON representation
Android Loading dialog
- Host: GitHub
- URL: https://github.com/jkaninda/loadingdialog
- Owner: jkaninda
- Created: 2022-05-08T08:11:42.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-08T08:49:47.000Z (over 3 years ago)
- Last Synced: 2025-04-14T03:13:22.404Z (6 months ago)
- Language: Kotlin
- Size: 343 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Android Loading Dialog
[](http://www.apache.org/licenses/LICENSE-2.0)
## Download and Import
### Android Studio/Gradle
- Maven:
```groovy
jitpack.io
https://jitpack.io
com.github.jkanTech
goma
1.0.2
```
- JitPack.io, add `jitpack.io` repositiory and dependency to your `build.gradle`:
```groovy
repositories {
maven {
url "https://jitpack.io"
}
}
dependencies {
implementation 'jkaninda:loadingdialog:1.0'
}
```### Android Studio
```groovy
repositories {
maven {
url "https://jitpack.io"
}
}
dependencies {
implementation 'jkaninda:loadingdialog:1.0'
}
```### Sample Kotlin Usage
####```Kotlin
private lateinit var loadingDialog: LoadingDialog
//Initialize Loading Dialog
loadingDialog=LoadingDialog(this)
//Start dialog
loadingDialog.startLoadingDialog(true)//Dismiss dialog
loadingDialog.dismissDialog()
```### Screenshots
Examples :eyes:
Download the [Loading Dialog Example App]() or look at the [source code](https://github.com/jkaninda/loadingdialog/tree/master/app).
## Authors
* **Jonas Kaninda** - [jkaninda](https://github.com/jkaninda)
## License
This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.