<@UJ8RD7NM7> When you call `getViewModel()`, it wi...
# koin
v
@Ofir Bar When you call
getViewModel()
, it will eagerly create an instance of your SigningViewModel as soon as the class is instantiated. Even though onCreate has not yet been called. What you need to do is lazily obtain the instance of your viewmodel by using
private val viewModel: SigningViewModel by viewmodel()
OR if you want do this inside of oncreate call
getViewModel
from within onCreate