@@ -90,7 +90,8 @@ A Flutter widget for rendering HTML and CSS as Flutter widgets.
9090Add the following to your ` pubspec.yaml ` file:
9191
9292 dependencies:
93- flutter_html: ^3.0.0-alpha.3
93+ flutter_html: ^3.0.0-alpha.5
94+ // Or flutter_html_all: ^3.0.0-alpha.5 to include table, video, audio, iframe...
9495
9596## Currently Supported HTML Tags:
9697| | | | | | | | | | | |
@@ -566,6 +567,11 @@ The package considers the attributes `controls`, `loop`, `src`, `autoplay`, `wid
566567
567568#### Registering the ` CustomRender ` :
568569
570+ Add the dependency to your pubspec.yaml:
571+
572+ dependencies:
573+ flutter_html_audio: ^3.0.0-alpha.3
574+
569575``` dart
570576Widget html = Html(
571577 customRenders: {
@@ -584,6 +590,11 @@ Sandbox controls the JavaScript mode of the webview - a value of `null` or `allo
584590
585591#### Registering the ` CustomRender ` :
586592
593+ Add the dependency to your pubspec.yaml:
594+
595+ dependencies:
596+ flutter_html_iframe: ^3.0.0-alpha.3
597+
587598``` dart
588599Widget html = Html(
589600 customRenders: {
@@ -620,6 +631,11 @@ Because this package is parsing MathML to Tex, it may not support some functiona
620631
621632#### Registering the ` CustomRender ` :
622633
634+ Add the dependency to your pubspec.yaml:
635+
636+ dependencies:
637+ flutter_html_math: ^3.0.0-alpha.3
638+
623639``` dart
624640Widget html = Html(
625641 customRenders: {
@@ -688,6 +704,11 @@ The package also exposes a few ways to render SVGs within an `<img>` tag, specif
688704
689705#### Registering the ` CustomRender ` :
690706
707+ Add the dependency to your pubspec.yaml:
708+
709+ dependencies:
710+ flutter_html_svg: ^3.0.0-alpha.3
711+
691712``` dart
692713Widget html = Html(
693714 customRenders: {
@@ -707,6 +728,11 @@ When rendering table elements, the package tries to calculate the best fit for e
707728
708729#### Registering the ` CustomRender ` :
709730
731+ Add the dependency to your pubspec.yaml:
732+
733+ dependencies:
734+ flutter_html_table: ^3.0.0-alpha.3
735+
710736``` dart
711737Widget html = Html(
712738 customRenders: {
@@ -723,6 +749,11 @@ The package considers the attributes `controls`, `loop`, `src`, `autoplay`, `pos
723749
724750#### Registering the ` CustomRender ` :
725751
752+ Add the dependency to your pubspec.yaml:
753+
754+ dependencies:
755+ flutter_html_video: ^3.0.0-alpha.3
756+
726757``` dart
727758Widget html = Html(
728759 customRenders: {
@@ -750,7 +781,8 @@ Widget row = Row(
750781```
751782
752783## Migration Guides
753- - For Version 1.0 - [ Guide] ( https://github.com/Sub6Resources/flutter_html/wiki/1.0.0-Migration-Guide )
784+ - For Version 1.0/2.0 - [ Guide] ( https://github.com/Sub6Resources/flutter_html/wiki/1.0.0-Migration-Guide )
785+ - For Version 3.0 - ** TODO**
754786
755787## Contribution Guide
756788> Coming soon!
0 commit comments