Skip to content

Instantly share code, notes, and snippets.

@GuilhE
Last active May 9, 2024 13:31
Show Gist options
  • Save GuilhE/22bed15b201f9af2f1c34de174c0355e to your computer and use it in GitHub Desktop.
Save GuilhE/22bed15b201f9af2f1c34de174c0355e to your computer and use it in GitHub Desktop.
Medium articles - What's Native
//commonMain
data class SharedObject(val currentDate: LocalDate)
//iosMain
actual fun platformModule() = module {
factory { SharedObject(LocalDate(2024, 3, 9)) }
}
object SharedObjectsProvider : KoinComponent {
fun sharedObject() = get<SharedObject>()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment