user17647683
user17647683

Reputation:

how to add symbols to text at flutter?

What is the way to write these symbols in Flutter (the symbols directed by the red arrow on image)? enter image description here

Upvotes: 0

Views: 1580

Answers (1)

Ravindra S. Patil
Ravindra S. Patil

Reputation: 14885

In VS code or Android Studio press Window + . open emoji window choose your emoji from list.

image

Result Screen-> image

Or you can put unicode charecter

Text('\u274C '),

Result Screen-> image

Upvotes: 1

Related Questions