答案 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
类并将其转换为显示箭头
只需在unicode
即U+
之后使用1F802
值,然后将其附加\u
用法
Text(new String.fromCharCodes(new Runes('\u1F802'))),