Created
August 3, 2021 03:23
-
-
Save SamueldaCostaAraujoNunes/3e71b52698e6e6bf910182676d1e8d61 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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