We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, The plugin is not rendering the html content in proper order for UL/LI tag.
This is my flutter snippet
child: Html( defaultTextStyle: TextStyle(fontSize: 16.0), //data: jobDetail.description, data: "responsibilities:<br /> <ul><li>Responsibility1</li><li>Responsibility2</li><li>Responsibility3</li></ul> qualifications:<br /><ul><li>Qualification1</li><li>Qualification2</li></ul> <br /> ", ),
This is how it renders after parsing responsibilities qualifications
As you can see it is not rendering properly. It is rendering the LI tag at the end.
Thanks for your help
The text was updated successfully, but these errors were encountered:
Even I am facing this issue. Is it resolved yet?
Sorry, something went wrong.
Please try .. https://pub.dev/packages/flutter_widget_from_html_core
Container( padding: const EdgeInsets.only(top: 15.0), child: HtmlWidget( "YOUR HTML TEXT", bodyPadding: EdgeInsets.all(0), textStyle: TextStyle(fontSize: 16.0), ),
There was an issue with lists in old versions, and this has been fixed and will be released with version 1.0.0. See #106
No branches or pull requests
Hello,
The plugin is not rendering the html content in proper order for UL/LI tag.
This is my flutter snippet
child: Html( defaultTextStyle: TextStyle(fontSize: 16.0), //data: jobDetail.description, data: "responsibilities:<br /> <ul><li>Responsibility1</li><li>Responsibility2</li><li>Responsibility3</li></ul> qualifications:<br /><ul><li>Qualification1</li><li>Qualification2</li></ul> <br /> ", ),
This is how it renders after parsing
responsibilities
qualifications
As you can see it is not rendering properly. It is rendering the LI tag at the end.
Thanks for your help
The text was updated successfully, but these errors were encountered: