Sub6Resources / flutter_html

A Flutter widget for rendering static html as Flutter widgets (Will render over 80 different html tags!)
https://pub.dev/packages/flutter_html
MIT License
1.75k stars 805 forks source link

Remove style from html code #1382

Open emaborsa opened 7 months ago

emaborsa commented 7 months ago

Let's say we have the following table:

<table>
  <tbody>
    <tr>
      <td style="width:50px"></td>
    </tr>
  </tbody
</table>

How can I remove the tds width? I already tryied with the following, but it is ignored:

style: <String, Style>{
  "td": Style(
    width: null
   )
}