hello I wonder how to use U 00B7 this unicode on flutter text widget
I want to use this text. How can I use unicode on flutter Text widget? thank you so much
CodePudding user response:
you can use it simply like this :
Text('\u00a9 example \u00B7'),
CodePudding user response:
If you're getting the text from api. You can do this:
Text(utf8.decode(text.codeUnits)