Skip to content

Instantly share code, notes, and snippets.

@Dima564
Created October 31, 2016 17:18
Show Gist options
  • Save Dima564/ef38cb2988066db865e2803052a56a0c to your computer and use it in GitHub Desktop.
Save Dima564/ef38cb2988066db865e2803052a56a0c to your computer and use it in GitHub Desktop.
selector(items = listOf("Like", "Dislike") {
when (it) {
0 -> if (!liked) likePost()
else -> if (!disLiked) disLikePost()
}
}
doAsync {
// Long background task
uiThread {
alert(R.string.could_not_log_in) {
yesButton { dismiss() }
cancellable = false
}.show()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment