flutter_html icon indicating copy to clipboard operation
flutter_html copied to clipboard

A Flutter widget for rendering static html as Flutter widgets (Will render over 80 different html tags!)

Results 244 flutter_html issues
Sort by recently updated
recently updated
newest added

**Describe the bug:** `` cannot be styled by referring to its class name. The reason why I can't style the ruby tag directly is because I have nested rubies inside...

bug
css

below is my html but it showing only first line and 3 bullets. Other data is not showing "\r\n Here's how we make it easy to sell offer or earn...

question

**Describe the bug:** The audio player bottom is overflowed so the control buttons cannot be clicked. As shown in the screenshot below. **HTML to reproduce the issue:** ``` Thinking about...

bug

I can't draw pictures like in the example using img tags. Is there a solution proposal? Thanks. ![image](https://user-images.githubusercontent.com/93825476/147783908-642d0d56-0139-4aaf-a7e2-0953f89c6ae6.png)

bug

I have string in html like this `أُوْلَـٰٓئِكَ عَلَىٰ هُدًى مِّن رَّبِّهِمْ‌ۖ وَأُوْلَـٰٓئِكَ هُمُ ٱلْمُفْلِحُونَ ` Its rendering color like this ![image](https://user-images.githubusercontent.com/82565399/147637343-b04e1c93-65f8-41a6-b548-fa6dc0d3f57a.png) Now if you see carefully there is mistake...

bug
rtl-text

![image](https://user-images.githubusercontent.com/42678103/142147238-1bf7606b-55cc-40b7-bcac-599baa4a3295.png) When we use flutter_html to render table, UI bug is happened because the width of table is larger than screen. We try modifying the code in layout_element.dart **_layoutCells** function....

bug

**Describe the bug:** The table cell overflow constraint when width is too large. **HTML to reproduce the issue:** ```html Pour l’évènement et les participants : -       La fiche « Créer un...

bug

**Describe the bug:** Links with specific class element need to have their own style and be clickable. If we apply a Display.BLOCK on the class element the onLinkTap will not...

bug

**Describe your feature request** Need to control 'table' tag's min width. **Additional context** layout_element.dart ``` cells.add(GridPlacement( child: Container( width: double.infinity, // need to edit padding: child.style.padding ?? row.style.padding, decoration: BoxDecoration(...

enhancement