简体   繁体   English

如何在 flutter 中添加 ñ 和波浪线?

[英]how can you add ñ and tildes in flutter?

It turns out that I want to put ñ and accents, but flutter recognizes them with symbols of "?"原来我想加上ñ和重音符号,但 flutter 用“?”符号识别它们in a rhombus, I tried several methods but I couldn't get it.在菱形中,我尝试了几种方法,但我无法得到它。

颤振字符

the solution I found was to use the unicode, the "ñ" comes out as the following U+00F1, but in flutter it is placed like this \u{00F1}, leaving for example "Ingrese contrase\u{00F1}a".我找到的解决方案是使用 unicode,“ñ”出现如下 U+00F1,但在 flutter 中,它的放置方式如下 \u{00F1},例如“Ingrese contrase\u{00F1}a” .

the other unicodes for accents or tildes are:
á: \u{00E1}
é: \u{00E9}
í: \u{00ED}
ó: \u{00F3}
ú: \u{00FA}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM