flutter_html

A Flutter widget for rendering static html as Flutter widgets (Will render over 80 different html tags!)

MIT License

Stars
1.8K
Committers
72

Bot releases are visible (Hide)

flutter_html - 3.0.0-beta.2 Latest Release

Published by Sub6Resources over 1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/Sub6Resources/flutter_html/compare/3.0.0-alpha.5...flutter_html-v3.0.0-beta.2

flutter_html - Version 3.0.0 alpha 5

Published by erickok over 2 years ago

  • [core] Fixed hot reloads, thanks @arjenmels
  • [core] Fixed link taps not working
flutter_html - Version 3.0.0 alpha 4

Published by erickok over 2 years ago

  • [video] Fixed compilation issue
flutter_html - Version 3.0.0 alpha 3

Published by erickok over 2 years ago

  • Fixed styling not being applied to list item markers
  • [video] Fixed crash when iframe or video tags used unsupported/incorrect height or width
flutter_html - Version 2.2.1

Published by erickok almost 3 years ago

  • Allow styling on ruby tags
  • Allow width/height/alignment styling on table/tr/td tags
  • Prevent images causing rebuilding and leaking memory
  • Fixes display of list items on iOS with font weights below 400
  • Prevent crash on negative margins or paddings
flutter_html - Version 2.1.1

Published by erickok about 3 years ago

  • Improves hr tag support
  • Fixes a leading whitespace issue
  • Fixes some crashes with CSS parsing
flutter_html - Version 2.1.0

Published by erickok over 3 years ago

  • SelectableHtml widget (supporting a subset of tags) which allow text selection
  • Fixed shrinkWrap to actually shrink the horizontal space
  • Support style tags to apply styling from inline css
  • Support applying styles from Flutter themes
  • Mouse hover on links when using Flutter Web
  • Allow custom anchor link tap implementations
  • Support additional list styling options
  • Fix several minor whitespace issues in text flow
  • Fixed specific colspan/rowspan usages in tables
  • Fixed whitespace issues around images
  • Swallow duplicate ids to prevent crashing the widget
  • Fixes crashing tap detection when using both link and image taps
  • Updates external dependencies
  • Raised minimum Flutter version to 2.2.0
flutter_html - Version 2.0.0

Published by erickok over 3 years ago

  • Stable release with all 2.0.0-nullsafety.X changes
flutter_html - Version 2.0.0-nullsafety.0

Published by erickok over 3 years ago

Important: this is a pre-release version

Breaking: this requires nullsafety support, Dart >=2.12.0 and Flutter >=2.0.0

  • Nullsafety support
  • Official Flutter Web support
  • New features & fixes for lists:
    • Support start attribute (e.g. start="5";)
    • Support RTL direction
    • Support setting padding - you can remove the starting padding if you choose
    • Fixed unknown character box on iOS when font-weight is below w400
  • Upgraded link functions to provide more granular control
  • Fixed errors in text-decoration parsing
  • Fixed <audio> on iOS ("_duration called on null" exception)
  • Updated dependencies
flutter_html - Version 1.3.0

Published by erickok over 3 years ago

Breaking: this release requires Flutter 1.26 or later

  • 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 shrinkWrap property would not constrain the widget to take up the space it needs
    • See the Notes for an example usage with shrinkWrap
  • Fixed issue where iframes would not update when their srcs changed in the HTML data
  • Updated dependencies for Flutter 1.26+
flutter_html - Update Dependencies

Published by ryan-berger almost 4 years ago

This update updates chewie_audio dependencies

flutter_html - Inline Styles, Flutter Update

Published by ryan-berger almost 4 years ago

This release brings an update to pubspec packages along with the support for inline styles. More documentation will be coming soon!

flutter_html - Version 1.0.2

Published by ryan-berger about 4 years ago

Fix text scaling issues, update versions

flutter_html - Version 1.0.0

Published by ryan-berger over 4 years ago

flutter_html - Version 1.0.0-pre.1

Published by Sub6Resources almost 5 years ago

See #122 for details.

flutter_html - Version 0.11.1

Published by Sub6Resources almost 5 years ago

flutter_html - Version 0.11.0

Published by Sub6Resources about 5 years ago

September 10, 2019:

  • Make it so width=100% doesn't throw error. Fixes #118.
  • You can now set width and/or height in ImageProperties to negative to ignore the width and/or height values from the html. Fixes #97
  • The img alt property now renders correctly when the image fails to load and with the correct style. Fixes #96
  • Add partial support for sub tag.
  • Add new option: shrinkToFit (#148). Fixes #75.