Skip to content

Instantly share code, notes, and snippets.

@GuilhE
Last active May 9, 2024 13:26
Show Gist options
  • Save GuilhE/ba44108256618c85b70ea4adccdee45b to your computer and use it in GitHub Desktop.
Save GuilhE/ba44108256618c85b70ea4adccdee45b to your computer and use it in GitHub Desktop.
Medium articles - What's Native
//iosMain
actual fun platformModule() = module {
factory { TimerViewModel() }
}
object ViewModels : KoinComponent {
fun timerViewModel() = get<TimerViewModel>().also {
println("Kotlin object ${it.objcPtr()}")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment