Hello! Is there anyway to determine whether koin i...
# koin
c
Hello! Is there anyway to determine whether koin is initialised? I'm trying to provide a meaningful exception when someone consumes a composable within my librariy, without having bootstrapped it, but unfortunately you cannot try/catch around composable methods.
a
if you are using Koin inside a library I suggest to use isolated context, to let your user use its own Koin context and don"t mix anything with your definitions
c
ooo this is really useful, thank you @arnaud.giuliani
👍 1