Good day, How do we escape characters in compose m...
# compose-ios
k
Good day, How do we escape characters in compose multiplatform? I have this string resource and when I run the app, the string is displayed as is including the backslash:
Copy code
<string name="signup_email_confirmation_required">"You\'ll need to confirm this email later."</string>
Without the backslash, I get a Resource compilation error.
a
Try using
&#39;
in lieu of
\'
Also, why are you wrapping the string in quotes?
k
Oops, that was a typo
Just tried. Failed to compile with
'