Hi everyone I try to implement a custom localizati...
# compose
r
Hi everyone I try to implement a custom localization in compose multiplatform. I followed the following doc entry to get the set locale: https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-resource-environment.html This works great when the app is initially started, but a change of the System language doesn't trigger recomposition. I get the string like this:
val string by remember(key1 = LocalAppLocale.current) { mutableStateOf(getSomeString(...) ?: "") }
Am I missing something?