flutter_html
flutter_html copied to clipboard
A Flutter widget for rendering static html as Flutter widgets (Will render over 80 different html tags!)
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, ) ```  Using `SelectableHtml` ``` SelectableHtml( data:...
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...
``` 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...
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)...
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:...
**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...
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 : ```...