i have this expect extension function ```expect fu...
# koin
y
i have this expect extension function
Copy code
expect fun Scope.isScreenLandscape(): Boolean
i used Scope so i could get the androidContext now in my ui i ran into this problem
Copy code
var isScreenLandscape by remember() { mutableStateOf(false) }

KoinContext {
    val screenOrientation = getKoin().getScope("").isScreenLandscape()
    isScreenLandscape = screenOrientation
}
to get the scope i need an Id , how can i asign that Id ?