andyduke / styled_text_package

Text widget with formatted text using tags. Makes it easier to use formatted text in multilingual applications.
https://pub.dev/packages/styled_text
BSD 3-Clause "New" or "Revised" License
75 stars 48 forks source link

Does it support emoji ? #8

Closed Brinfotech1407 closed 3 years ago

Brinfotech1407 commented 4 years ago

I have used it like whatsapp formatting text , so if i want to display emoji in text view how can i do that ?

andyduke commented 3 years ago

I have used it like whatsapp formatting text , so if i want to display emoji in text view how can i do that ?

Yes, you can insert them just like in a normal Text widget:

StyledText(
  text: '😃',
  styles: {},
),