flutter_html 1.3.0
flutter_html: ^1.3.0 copied to clipboard
A Flutter widget rendering static HTML and CSS as Flutter widgets.
1.3.0 February 16, 2021: #
- New image loading API
- Image loading with request headers, from relative paths and custom loading widget
- SVG image support from network or local assets
- Support for
<details>/<summary>tags - Allow returning spans from custom tag renders
- Inline font styling
- Content-based table column sizing
- Respect iframe sandbox attribute
- Fixed text flow and styling when using tags inside
<a>links - Fixed issue where
shrinkWrapproperty would not constrain the widget to take up the space it needs- See the Notes for an example usage with
shrinkWrap
- See the Notes for an example usage with
- Fixed issue where iframes would not update when their
srcs changed in the HTML data - Updated dependencies for Flutter 1.26+
1.2.0 January 14, 2021: #
- Support irregular table sizes
- Allow for returning
nullfrom a customRender function to disable the widget
1.1.1 November 22, 2020: #
- Update dependencies
1.1.0 November 22, 2020: #
- Add support for inline styles
- Update dependencies
1.0.2 August 8, 2020: #
- Fix text scaling issues
- Update dependencies
1.0.1 August 8, 2020: #
- Fixed flutter_svg: ^0.18.0
1.0.0 #
- BREAKING CHANGES (see the Migration Guide for a full overview of breaking changes.):
- The default parser has been completely rewritten and the RichText parser has been removed.
useRichTextno longer is necessary (The new parser uses RichText under the hood)customRendernow works for the default parser.
- Adds support for
<audio>,<video>,<iframe>,<svg>,<ruby>,<rt>,<rp>,<sub>, and<sup> - Adds support for over 20 CSS attributes when using the
styleparameter. - Fixes many many issues (see the list at #122)
- The following parameters of
Htmlhave been removed and should no longer be used (see the migration guide):useRichTextpaddingbackgroundColordefaultTextStylerenderNewlinescustomEdgeInsetscustomTextStyleblockSpacingcustomTextAlignlinkStyleimagePropertiesshowImages
- The default text style now matches the app's Material
TextTheme.bodyText2(Fixes #18). - Requires Flutter v1.17.0 or greater
- Fixed quite a few issues with
img - Added a fancy new
styleattribute (this should be used in place of the deprecated styling parameters).
1.0.0-pre.1 December 27, 2019 #
- For a list of pre-release changes, including several BREAKING CHANGES, see release notes for 1.0.0 above.
0.11.0 September 10, 2019: #
- Make it so
width=100%doesn't throw error. Fixes #118. - You can now set width and/or height in
ImagePropertiesto negative to ignore thewidthand/orheightvalues from the html. Fixes #97 - The
imgaltproperty now renders correctly when the image fails to load and with the correct style. Fixes #96 - Add partial support for
subtag. - Add new option:
shrinkToFit(#148). Fixes #75.
0.10.4 June 22, 2019: #
- Add support for
customTextStyleto block and specialty HTML elements.
0.10.2 June 19, 2019: #
0.10.1 May 20, 2019: #
0.10.0 May 18, 2019: #
- BREAKING:
useRichTextnow defaults totrue - Support for
aside,bdi,big,cite,data,ins,kbd,mark,nav,noscript,q,rp,rt,ruby,s,samp,strike,template,time,tt, andvaradded toRichTextparser.
0.9.8 May 14, 2019: #
- Add support for
addresstag inRichTextparser.
0.9.7 May 13, 2019: #
0.9.5 March 11, 2019: #
0.9.3 January 31, 2019: #
- Adds support for base64 encoded images
0.9.2 January 31, 2019: #
- Adds partial support for deprecated
fonttag.
0.9.1 January 31, 2019: #
0.8.2 November 1, 2018: #
- Removes debug prints.
0.8.1 October 19, 2018: #
- Adds
typedefforonLinkTapfunction.
0.8.0 October 18, 2018: #
- Adds custom tag callback
- Logging no longer shows up in production.
0.7.1 September 11, 2018: #
- Fixes issue with text nodes that contain only a space. (#24)
- Fixes typo in README.md from 0.7.0.
0.7.0 September 10, 2018: #
- Adds full support for
ulandol
0.6.2 September 5, 2018: #
- Adds check for
img srcbefore trying to load it. - Adds support for
img altattribute.
0.6.1 September 4, 2018: #
- Fixed minor typo
0.6.0 September 4, 2018: #
- Update README.md and example
- GitHub version 0.6.0 milestone reached
0.5.6 September 4, 2018: #
- Adds partial support for
centerand arenderNewlinesproperty on theHtmlwidget.
0.5.5 September 4, 2018: #
- Adds support for
acronym, andbig.
0.5.4 August 31, 2018: #
- Adds
onLinkTapcallback.
0.5.3 August 25, 2018: #
- Adds support for
strike, andtt.
0.5.2 August 25, 2018: #
- Adds support for
bdiandbdo
0.5.0 August 23, 2018: #
0.4.0 August 15, 2018: #
- Adds support for
table,tbody,tfoot,thead,tr,td,th, andcaption
0.3.1 August 15, 2018: #
- Fixed issue where
pwas not rendered with thedefaultTextStyle.
0.3.0 August 15, 2018: #
-
Adds support for
abbr,address,article,aside,blockquote,br,cite,code,data,dd,del,dfn,dl,dt,figcaption,figure,footer,header,hr,img,ins,kbd,li,main,mark,nav,noscript,pre,q,rp,rt,ruby,s,samp,section,small,span,template,time, andvar -
Adds partial support for
a,ol, andul
0.2.0 August 14, 2018: #
- Adds support for
img.
0.1.1 August 14, 2018: #
- Fixed
bto be bold, not italic... - Adds support for
em, andstrong - Adds support for a default
TextStyle
0.1.0 August 14, 2018: #
- Renamed widget from
HtmlWidgettoHtml - Adds support for
p,h1,h2,h3,h4,h5, andh6.
0.0.1 August 14, 2018: #
- Adds support for
body,div,b,i, andu.