daohoangson / flutter_widget_from_html

Flutter package to render html as widgets that supports hyperlink, image, audio, video, iframe and many other tags.
https://pub.dev/packages/flutter_widget_from_html
MIT License
635 stars 235 forks source link

font-family usage #1126

Closed peterjonesdyedurham closed 10 months ago

peterjonesdyedurham commented 10 months ago

I'm looking for a way to use 'font-family' but can't find anything here. Is it possible to use 'font-family' in an inline style in my HTML in 'HtmlWidget"? Thanks in advance.

daohoangson commented 10 months ago

Yes, font-family is supported. It is listed in the README and pub.dev too:

Screenshot 2023-12-07 at 09 09 38
peterjonesdyedurham commented 10 months ago

Thank you Dao, for your quick response. Can you point me to an example as to how to use font-family within const String htmlContent? I haven't been able to make it work yet. Thank you.

daohoangson commented 10 months ago

Something simple like Hello, <span style="font-family: Lato">Google Fonts</span>. should work. Given that you include the font in your pubspec.

peterjonesdyedurham commented 10 months ago

Thanks Dao.

peterjonesdyedurham commented 10 months ago

Your speedy replies are very much appreciated.