Hi is there any sample available for koin for comp...
# koin
s
Hi is there any sample available for koin for compose multiplatform, no sample is available for it. I found one sample from its docs about kotlin multiplatform thats showing only for 2 platforms android and ios, will that work for other targets as well like js and desktop? if yes, how we can start koin from js and desktop specific modules?
s
It should support JS as well, since it has source-sets for it. it definitely supports jvm/desktop. And it works just like other platforms. You call
startKoin {}
someplace very early and give it all the modules.
s
I will try it. Thnx