Skip to content

Instantly share code, notes, and snippets.

@pavel-ismailov
Created April 20, 2018 05:59
Show Gist options
  • Save pavel-ismailov/416b8d3cf35f625ce7fdaaf284ce4413 to your computer and use it in GitHub Desktop.
Save pavel-ismailov/416b8d3cf35f625ce7fdaaf284ce4413 to your computer and use it in GitHub Desktop.
object DialogUtils {
@JvmStatic
fun dismiss(dialog: Dialog?) {
dialog?.dismissSafe()
}
}
fun Dialog.dismissSafe(){
if (this.isShowing) {
dismiss()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment