flutter_html
flutter_html copied to clipboard
A Flutter widget for rendering static html as Flutter widgets (Will render over 80 different html tags!)
**Describe your feature request** We currently have an issue with mis-aligned list-item prefixes that would require me to style them. Here's an example of the issue in case I've missed...
## Adds support for `margin: auto` style centering. A pretty common centering pattern in HTML/CSS is to give a left and right margin value of `auto`. Further, some WYSIWYG editors...
**Describe your feature request** Currently if our fonts are located inside a local package they cannot be retrieved inside **flutter_html** **`Style()`** like they can in a regular Flutter **`TextStyle()`** :...
SelectableHtml State change doesn't refresh the widget
As stated in the example code I tried to run ``` Widget html = Html( data: """ Display bird element and flutter element """, customRender: { "bird": (RenderContext context, Widget...
Inferred mrows specification is documented here. https://www.w3.org/TR/REC-MathML/chap3_1.html#sec3.1.3 For example, Both `10n` and `10n` should be the same rendering result.  Current flutter_html_math doesn't work as expected.
**Describe the bug:** vertical-align property doesn't work as expected. **HTML to reproduce the issue:** ```html 3x-27 = 0x ``` **`Html` widget configuration:** Using clean Html or SelectableHtml. **Additional info:** I...
#169 got closed through #682 introducing a `SelectableHtml` with a feature subset currently achievable with Flutter's support level. Reaching feature parity is blocked by https://github.com/flutter/flutter/issues/38474, but once this is resolved...
**Describe the bug:** add line-height css causes list misalignment **HTML to reproduce the issue:** ``` .content { line-height: 2; } 1 2 3 11 22 ``` **`Html` widget configuration:** ```...