Skip to content

Instantly share code, notes, and snippets.

@diousk
Last active February 1, 2020 09:10
Show Gist options
  • Save diousk/0e17b6d2c3829232cd7d7be0da476a59 to your computer and use it in GitHub Desktop.
Save diousk/0e17b6d2c3829232cd7d7be0da476a59 to your computer and use it in GitHub Desktop.
class DummyFragment @Inject constructor(
private val repo: AppRepo
) : DaggerFragment() {
@Inject
lateinit var vmFactory: ViewModelProvider.Factory
private val viewModel by viewModels<DummyViewModel> { vmFactory }
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment