diff --git a/README.md b/README.md index 5f50763..6a171a0 100644 --- a/README.md +++ b/README.md @@ -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") @@ -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!")