Reputation: 1634
How can we add a unicode arrow in Flutter new Text('Arrow should come here')
.
Upvotes: 4
Views: 7644
Reputation: 11457
You can use Runes
class which does not need any plugin
Example
You want to show right arrow and you know its unicode
value ie U+1F802
Now to show it in text you can use Runes
class and convert it to show arrow
Just need to use the unicode
value after U+
ie 1F802
and then append it with \u
Usage
Text(new String.fromCharCodes(new Runes('\u1F802'))),
Upvotes: 5