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

Hi I am unable render the below html, This the error: The following _TypeError was thrown building HtmlParser(dirty): type '() => Null' is not a subtype of type '(() =>...

bug

**Describe the bug:** Video tag cause a LateInitializationError to happen on sources **HTML to reproduce the issue:** **`Html` widget configuration:** ```go Html( data: widget.article["Contents"], style: Style.fromCss("video { max-height: 400px; }",...

bug
<video>

Below is my code block. ``` Widget stepsHtmlWidget = Html( data: htmlData, style: { "ol": Style( direction: TextDirection.ltr, padding: EdgeInsets.zero, fontSize: FontSize.small, ), "li": Style( fontSize: FontSize.large, textAlign: TextAlign.start, lineHeight:...

bug
lists

Thanks for the wonderful plugin. I was trying to applying external CSS using `style: Style.fromCss(externalCss, (css, errors) { print("error" + css); print("errors" + errors.toString()); }),` But CSS is not applying....

bug
css

**Describe the bug:** I have some basic `` tag markup in my CMS and I want this to render in my Flutter app. The audio controls show but the duration...

bug

**Describle th bug:** I have used Django backend for my project where MathType library is used to get HTML math symbols but when I'm fetching the data from backend some...

bug

**base64 Image Flickering on setState** when we use setState then the base64 is re-rendering ![Uploading image_flicker_gif.gif…]() .

bug
enhancement
<img>

**Describe the bug:** Images within tables are not scaled to display size, causing them to overflow horizontally. Images not inside a table are scaled correctly. **HTML to reproduce the issue:**...

bug

How can i make the `list-style-type:circle` smaller. #### HTML to reproduce the issue: ```html 1 2 3 4 5 ``` #### Image ![截屏2022-01-15 下午2 50 17](https://user-images.githubusercontent.com/58196744/149612431-2d8d4d59-c5d4-4731-b8b1-4580ec07fe6e.png) #### version `flutter_html: ^2.2.1`

question