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

The plugin Accessibility is not compatible

The order list gone after changing `Html` to `SelectableHtml`. Used `flutter_html: 3.0.0-alpha.5`, runs on Android Emulators. using `Html`: ``` Html( data: html, ) ``` ![image](https://user-images.githubusercontent.com/19542037/188481691-80e88ac1-f808-49ea-b808-4e1a4abb6fc1.png) Using `SelectableHtml` ``` SelectableHtml( data:...

bug
lists
selectable-html
in-triage

When working on the split packages of flutter_html I found it annoying to do some chores such as updating versions and locally linking packages to test or release changes. It's...

I'm using a rich text editor that build li element with p inside it and this cause line break. Please guide me o suggest me about how to exclude this...

in-triage

``` text-shadow: rgb(2, 0, 171) 1px 0px, rgb(2, 0, 171) -1px 0px, rgb(2, 0, 171) 0px 1px, rgb(2, 0, 171) 0px -1px; ``` Not supported this style? ``` Null check...

There are actually two problems : ## 1. Short links: Link color is missing When having short `` links nested in `` underlined text, the underlining color for the link...

bug

Using the latest Flutter The example app gets dependency errors using 3.0.0 - beta 2 as below (BTW, trying to use V2.21 flutter_html also gets errors with the latest Flutter)...

bug

onLinkTap in Nested Html widget not working. For example, ``` Html(data: 'Hello ', extensions: [ TagExtension( tagsToExtend: {'object'}, builder: (ExtensionContext ec) { return Column(children: [ Text('Foo'); Html(data: 'Click me', onLinkTap:...

bug

**Describe the bug:** When using a table widget with the `flutter_html_table` package, it overflows. This is with or without sized boxes or SingleChildScrollView. Both in an attempt to catch the...

bug

Hello, If I use `` inside `` with TagExtension for both, the first TagExtension works but the second does not. How I can make TagExtension recursive ? Example : ```...

question
extensions
documentation