Skip to content

Instantly share code, notes, and snippets.

@viniciusalvesmello
Created March 26, 2021 18:19
Show Gist options
  • Save viniciusalvesmello/fd90023abb064d522fdf62a647cf0464 to your computer and use it in GitHub Desktop.
Save viniciusalvesmello/fd90023abb064d522fdf62a647cf0464 to your computer and use it in GitHub Desktop.
Intância ViewModel com Dagger Hilt sem a Fragment KTX
@AndroidEntryPoint
class MyFragment : Fragment() {
...
private val viewModel: MyViewModel by lazy {
ViewModelProvider(this).get(MyViewModel.class)
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment