Hassaan
07/21/2023, 7:35 PM'LocalContext.current.getString
and stringResource'
behave exactly the same ?ephemient
07/21/2023, 8:15 PMLocalConfiguration.current
LocalContext.current.resources.getString(...)
which will recompose if the configuration changes, even if the context doesn'tHassaan
07/22/2023, 3:56 AMephemient
07/22/2023, 4:41 AMstringResource
. if you have different values under different resources qualifiers (such as translations) and follow the Compose guidance around configChanges
(let Compose handle everything) then it is necessaryHassaan
07/22/2023, 4:42 AM