Created
August 3, 2021 03:38
-
-
Save SamueldaCostaAraujoNunes/b5404f43c075135e4ede57dd09f88e4e 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
private val _searchView = MutableLiveData(true) | |
val searchViewVisibility: LiveData<Boolean> = _searchView | |
fun showSearchView() { | |
_searchView.value = true | |
} | |
fun hideSearchView() { | |
_searchView.value = false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment