Skip to content

Instantly share code, notes, and snippets.

@svinouze
Last active December 27, 2021 12:55
Show Gist options
  • Save svinouze/c3fd06c619e4ba0b767ae103543c8164 to your computer and use it in GitHub Desktop.
Save svinouze/c3fd06c619e4ba0b767ae103543c8164 to your computer and use it in GitHub Desktop.
inline fun <reified VM : ViewModel> ComponentActivity.viewModel(
factory: SavedStateViewModelFactory.Factory,
): Lazy<VM> = lazy {
ViewModelProvider(this,factory.create(this, intent.extras))
.get(VM::class.java)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment