在浮动文本中添加特殊字符

时间:2018-12-14 02:36:20

标签: unicode flutter

如何在颤振new Text('Arrow should come here')中添加unicode箭头。

enter image description here

2 个答案:

答案 0 :(得分:2)

您在这里:

MessagingCenter.Subscribe<App>(this, "OnSleep", (sender) => {
//shows start button instead of stop button
if (null != timer)
{
    StartGrid.IsVisible = true;
    //hides stop button
    StopNextGrid.IsVisible = false;
    //stops timer
    timer.Stop();
    timer = null;
    //stops sound
    startSound.Stop();
    stopSound.Play();
}
});

       Text("→"),

答案 1 :(得分:0)

您可以使用Runes类,不需要任何插件

示例

您想显示右箭头,并且知道它的unicode值,即U+1F802

现在要以文本形式显示它,您可以使用Runes类并将其转换为显示箭头

只需在unicodeU+之后使用1F802值,然后将其附加\u

用法

Text(new String.fromCharCodes(new Runes('\u1F802'))),

List of special charaters