for text compose , do these two `'LocalContext.cu...
# getting-started
h
for text compose , do these two
'LocalContext.current.getString
and
stringResource'
behave exactly the same ?
e
h
It means there will be one more recomposition after initial composition when we use stringResource?Can u explain a bit more when to use which?
e
always use
stringResource
. 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 necessary
👍 1
h
Thanks