Flutter arb 文件中的非中断 space
Non-breaking space in Flutter arb file
我正在尝试在 Flutter 应用程序的 arb
文件中添加不间断的 space,但是,我找不到任何方法将 Unicode 字符放入 arb
文件.
我需要这样的东西:
{
"@@locale": "en",
"helloWorld": "Hello world!",
}
是否可以将 \n
等自定义字符添加到 arb
文件?
您应该可以在套利中使用 \u00A0
:
"forceUpgradeButtonText": "Hello\u00A0world",
然后在 Dart 中 app_localizations_en.dart:
@override
String get forceUpgradeButtonText => 'Hello world';
之间的字符根据this page
是NO-BREAK SPACE
我正在尝试在 Flutter 应用程序的 arb
文件中添加不间断的 space,但是,我找不到任何方法将 Unicode 字符放入 arb
文件.
我需要这样的东西:
{
"@@locale": "en",
"helloWorld": "Hello world!",
}
是否可以将 \n
等自定义字符添加到 arb
文件?
您应该可以在套利中使用 \u00A0
:
"forceUpgradeButtonText": "Hello\u00A0world",
然后在 Dart 中 app_localizations_en.dart:
@override
String get forceUpgradeButtonText => 'Hello world';
之间的字符根据this page
是NO-BREAK SPACE