Skip to content

Instantly share code, notes, and snippets.

@maciekczwa
Created May 30, 2017 16:06
Show Gist options
  • Save maciekczwa/4e0228058a92e0f7b401897d1456105a to your computer and use it in GitHub Desktop.
Save maciekczwa/4e0228058a92e0f7b401897d1456105a to your computer and use it in GitHub Desktop.
BASE
inline fun <reified T : ViewModel> createViewModel() = ViewModelProviders.of(this, viewModelFactory).get(T::class.java)
IMPL
val searchViewModel: SearchViewModel by lazy { createViewModel<SearchViewModel>() }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment