We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
final x = 'This is a double line string' ' with info.';
I select both lines and get this:
"thisIsADoubleLineStringWithInfo": "This is a double line string'\n ' with info.",
I'm using this to localize my app and it's great! Thanks for making it.
The text was updated successfully, but these errors were encountered:
Don't you find yourself with two apostrophes in your text?
Wouldn't it be better to use this ?
final x = '''First line Second line''';
Sorry, something went wrong.
I don't like that as I like lines indented. But this feature isn't so important. I just combine the string before converting. no problem.
No branches or pull requests
final x = 'This is a double line string'
' with info.';
I select both lines and get this:
"thisIsADoubleLineStringWithInfo": "This is a double line string'\n ' with info.",
I'm using this to localize my app and it's great! Thanks for making it.
The text was updated successfully, but these errors were encountered: