Last active
August 24, 2023 10:29
-
-
Save Kaspic/405f6b2453186cf57db777c8c23a1b48 to your computer and use it in GitHub Desktop.
Android Studio Kotlin LiveData Function Templates
This file contains 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 _$NAME$ = MutableLiveData<$PARAM_TYPE$>() | |
val $NAME$ : LiveData<$PARAM_TYPE$> = _$NAME$ |
This file contains 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 _$NAME$ = SingleLiveEvent<$PARAM_TYPE$>() | |
val $NAME$ : LiveData<$PARAM_TYPE$> = _$NAME$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment