Skip to content

Instantly share code, notes, and snippets.

@robotsquidward
Created September 30, 2020 12:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robotsquidward/d6d9cbda65ece3ad1bf9a0ca92b55002 to your computer and use it in GitHub Desktop.
Save robotsquidward/d6d9cbda65ece3ad1bf9a0ca92b55002 to your computer and use it in GitHub Desktop.
private val model: MyViewModel by lazy {
ViewModelProvider(
this,
createWithFactory {
MyViewModel(repo = MyRepository())
}
).get(MyViewModel::class.java)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment