at the moment I duplicate fragment-definitions: `...
# koin
t
at the moment I duplicate fragment-definitions:
Copy code
factory(named("product"), override = true) {
       GetProductView(get(biNamed<GetProductViewModel, GetProductUIEvent>()))
} bind BaseFragment::class
factory { 
     GetProductView(get(biNamed<GetProductViewModel, GetProductUIEvent>()))
}
This, because at screen rotation they expect an fragment without qualifiers. The qualifier is specified in the fragment function, so I was wondering ifi I missed something... PS. I am using the get to instantiate it the first time.