Created
February 2, 2021 08:09
-
-
Save ilfuriano/e87151f9719e9963c3f3db1ee5963b98 to your computer and use it in GitHub Desktop.
Live Template for Android Studio
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
// create backing field for live date (ex. in ViewModel) | |
private val _$VARIABLE_NAME$ = MutableLiveData<$VARIABLE_TYPE$>() | |
val $VARIABLE_NAME$: LiveData<$VARIABLE_TYPE$> = _$VARIABLE_NAME$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment