Djuro
01/20/2024, 1:39 PMstrings.xml
I have a string resource with name length of specific size ex.
<string name="confirm_new_password_placeholder">Confirm your new password</string
notice that the name confirm_new_password_placeholder
had kinda too many characters (32)
What happens is that Android works fine but iOS is causing issues and can't handle these resources properly. For example, output text value of Text(stringResource(MR.strings.confirm_new_password_placeholder))
on Android it would be Confirm your new password
on iOS it would be _confirm_new_password_placeholder -_ literally like this
Did someone face this issue?
using 0.24.0-alpha-1alex009
01/21/2024, 5:49 AMDjuro
01/22/2024, 8:08 AM