Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Shashank02051997 committed Jul 4, 2021
2 parents beb09a0 + 227732b commit d128789
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 @@ -45,9 +45,9 @@ new FancyGifDialog.Builder(this)
.setTitleTextColor(R.color.titleText)
.setDescriptionTextColor(R.color.descriptionText)
.setNegativeBtnText("Cancel") // or pass it like android.R.string.cancel
.setPositiveBtnBackground("#FF4081") // or pass it like R.color.positiveButton
.setPositiveBtnBackground(R.color.positiveButton)
.setPositiveBtnText("Ok") // or pass it like android.R.string.ok
.setNegativeBtnBackground("#FFA9A7A8") // or pass it like R.color.negativeButton
.setNegativeBtnBackground(R.color.negativeButton)
.setGifResource(R.drawable.gif1) //Pass your Gif here
.isCancellable(true)
.OnPositiveClicked(new FancyGifDialogListener() {
Expand All @@ -74,7 +74,7 @@ new FancyGifDialog.Builder(this)
.setTitleTextColor(R.color.titleText)
.setDescriptionTextColor(R.color.descriptionText)
.setPositiveBtnText("Ok")
.setPositiveBtnBackground("#FF4081")
.setPositiveBtnBackground(R.color.positiveButton)
.setGifResource(R.drawable.gif1) //Pass your Gif here
.isCancellable(true)
.OnPositiveClicked(new FancyGifDialogListener() {
Expand Down

0 comments on commit d128789

Please sign in to comment.