Skip to content

Instantly share code, notes, and snippets.

@ilfuriano
Created February 2, 2021 08:09
Show Gist options
  • Save ilfuriano/e87151f9719e9963c3f3db1ee5963b98 to your computer and use it in GitHub Desktop.
Save ilfuriano/e87151f9719e9963c3f3db1ee5963b98 to your computer and use it in GitHub Desktop.
Live Template for Android Studio
// 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