Skip to content

Instantly share code, notes, and snippets.

@abircse
Created February 15, 2021 13:52
Show Gist options
  • Save abircse/61d11b648fed60ed262229911a0c7ef2 to your computer and use it in GitHub Desktop.
Save abircse/61d11b648fed60ed262229911a0c7ef2 to your computer and use it in GitHub Desktop.
ViewVisibilityExtension
inline fun View.setVisibility(value: Boolean) {
this.visibility = if (value) View.VISIBLE else View.GONE
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment