krokyze / flutter_seo

Flutter package for SEO support on Web.
MIT License
46 stars 5 forks source link

html text get displayed on screen #45

Closed tonylam1015 closed 5 months ago

tonylam1015 commented 7 months ago

Hello,

I have just updated flutter framework to the latest 3.16.2 and discovered that the html texts get displayed on the screen.

image

Here is the code:

Widget build(BuildContext context) { return Column( children: [ Seo.text( text: 'SEO html h1 Text', style: TextTagStyle.h1, child: Text('SEO show h1 Text 2') ), Seo.text( text: 'SEO html p Text', style: TextTagStyle.p, child: SelectableText('SEO show p Text 2') ), ] ); }

LucyJeong commented 7 months ago

you should put the code inside scaffold.