Skip to content

Instantly share code, notes, and snippets.

@SamueldaCostaAraujoNunes
Created August 3, 2021 03:23
Show Gist options
  • Save SamueldaCostaAraujoNunes/3e71b52698e6e6bf910182676d1e8d61 to your computer and use it in GitHub Desktop.
Save SamueldaCostaAraujoNunes/3e71b52698e6e6bf910182676d1e8d61 to your computer and use it in GitHub Desktop.
@BindingAdapter("visibleIf")
fun View.visibleIf(condition: Boolean) {
visibility = if (condition) {
VISIBLE
} else {
GONE
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment