Created
October 13, 2021 12:25
-
-
Save burnoo/6641d4818f01f1482819087bb24dd72a to your computer and use it in GitHub Desktop.
Cokoin medium 5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Composable | |
fun App() { | |
val globalData = get<AppData>() // uses Global KoinContext | |
Koin(koinApplication) { | |
val localData = get<AppData>() // uses Local KoinContext (koinApplication) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment