We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0173c4d commit 0265815Copy full SHA for 0265815
README.md
@@ -24,7 +24,7 @@ A simple library to help developers create alert dialogs
24
25
# :fast_forward: Quick use
26
```kotlin
27
- val dialog = DialogAlerter(this, DialogAlerter.TYPE_LOADING)
+ val dialog = Dialoger(this, Dialoger.TYPE_LOADING)
28
.setTitle("This is a loading alert...")
29
.setText("This might take a while...")
30
.setProgressBarColor("#7acf19")
@@ -35,7 +35,7 @@ A simple library to help developers create alert dialogs
35
handler.postDelayed({
36
dialog.dismiss()
37
38
- DialogAlerter(this, DialogAlerter.TYPE_SUCCESS)
+ Dialoger(this, Dialoger.TYPE_SUCCESS)
39
.setTitle("New Dialog!")
40
.setText("This was an amazing success!")
41
.setButtonText("ALLONS-Y!")
0 commit comments