Skip to content

This library allows you to show dialog quickly, simply, animated and beautiful.

License

Notifications You must be signed in to change notification settings

felixsoares/SweetDialog

Repository files navigation

This library allows you to show dialog quickly, simply, animated and beautiful.

SweetDialog

Getting Started

Add it in your root build.gradle (Project module)

allprojects {
   repositories {
        ...
        maven { url 'https://jitpack.io' }
   }
}

Add the dependency in build.gradle (App module)

dependencies {
	implementation 'com.github.felixsoares:SweetDialog:1.2'
}

Documentation

  1. Options.
SweetDialog()
	.setTitle("Lorem ipsum") // Title
	.setMessage("Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam nec magna diam.") // Message
	.setCancellable(false) // Can user close on back ?
	.setPositiveColor(android.R.color.holo_orange_dark) // Color of background positive button
	.setPositiveTextColor(R.color.black) // Color of text positive button 
	.setPositiveText("Positive =)") // Text of positive button
	.onPositiveClick { dialog -> 
		dialog.dismiss() // Click in positie button
	}
	.setNegativeColor(R.color.black) // Color of background negative button
	.setNegativeTextColor(R.color.red) // Color of text negative button
	.setNegativeText("Negative =(") // Text of negative button 
	.onNegativeClick { dialog ->
		dialog.dismiss() // Click in negative button
	}
	.setTimer(5000) // Timeout of dialog close in millis
	.setType(SweetDialog.Type.SUCCESS) // Type of dialog
	.setAnimation(SweetDialog.Animation.IN_TO_OUT) // Set enter exit animation
	.show(this)
  1. All configurations are optionals.
SweetDialog()
	.setTitle("Lorem ipsum")
	.setAnimation(SweetDialog.Animation.IN_TO_OUT)
	.show(this)
  1. Types.
SweetDialog.Type.DEFAULT
SweetDialog.Type.SUCCESS
SweetDialog.Type.ERROR
SweetDialog.Type.DANGER
  1. Animations.
SweetDialog.Animation.TOP_TO_BOTTOM
SweetDialog.Animation.TOP_TO_TOP
SweetDialog.Animation.BOTTOM_TO_BOTTOM
SweetDialog.Animation.BOTTOM_TO_TOP
SweetDialog.Animation.LEFT_TO_RIGHT
SweetDialog.Animation.LEFT_TO_LEFT
SweetDialog.Animation.RIGHT_TO_LEFT
SweetDialog.Animation.RIGTH_TO_RIGHT
SweetDialog.Animation.FADE
SweetDialog.Animation.BOUNCE
SweetDialog.Animation.IN_TO_OUT
  1. Progress in countdown.
SweetDialog()
    .setTimer(5000) // By default is invisible
    .show(this)


SweetDialog()
    .setTimer(5000, SweetDialog.Progress.VISIBLE)
    .show(this)

SweetDialog.Progress.VISIBLE
SweetDialog.Progress.INVISIBLE

MIT License

Copyright (c) 2019 Felix Soares

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

This library allows you to show dialog quickly, simply, animated and beautiful.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published