Skip to content

Instantly share code, notes, and snippets.

@Kaspic
Last active August 24, 2023 10:29
Show Gist options
  • Save Kaspic/405f6b2453186cf57db777c8c23a1b48 to your computer and use it in GitHub Desktop.
Save Kaspic/405f6b2453186cf57db777c8c23a1b48 to your computer and use it in GitHub Desktop.
Android Studio Kotlin LiveData Function Templates
private val _$NAME$ = MutableLiveData<$PARAM_TYPE$>()
val $NAME$ : LiveData<$PARAM_TYPE$> = _$NAME$
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