my problem that this functions takes `scope` as no...
# koin
t
my problem that this functions takes
scope
as non-lazy param, an I want to provide
scope
as lazy: - scope is created in
Activity
and I want to use it in
Fragment
- this prevents using:
Copy code
class MyFragment : Fragment() {
    private val myInjectedInstance by inject<InjectedInstance>()
    ...
}
as
scope
has not yet been created, but already requested in
Fragment
constructor.