Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Ido-Barnea committed Apr 2, 2022
2 parents d483965 + 0265815 commit 986260a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ A simple library to help developers create alert dialogs
> Step 2: Add the dependency
```gradle
dependencies {
implementation 'com.github.Ido-Barnea:Dialoger:1.0.6'
implementation 'com.github.Ido-Barnea:Dialoger:1.0.7'
}
```
That's it!

# :fast_forward: Quick use
```kotlin
val dialog = DialogAlerter(this, DialogAlerter.TYPE_LOADING)
val dialog = Dialoger(this, Dialoger.TYPE_LOADING)
.setTitle("This is a loading alert...")
.setText("This might take a while...")
.setProgressBarColor("#7acf19")
Expand All @@ -35,7 +35,7 @@ A simple library to help developers create alert dialogs
handler.postDelayed({
dialog.dismiss()

DialogAlerter(this, DialogAlerter.TYPE_SUCCESS)
Dialoger(this, Dialoger.TYPE_SUCCESS)
.setTitle("New Dialog!")
.setText("This was an amazing success!")
.setButtonText("ALLONS-Y!")
Expand Down

0 comments on commit 986260a

Please sign in to comment.