I want to scope a dependency as same life time as ...
# koin
f
I want to scope a dependency as same life time as a `sharedviewModel`which I will inject in other short-living fragment `viewModel`s or maybe into `fragment`s. When shared model is descoped /destroyed this dependency should also be destroyed. Any ideas?
Dont want to use
koin.createScope()
or
scope.close()