flutter_html_view 0.5.0 flutter_html_view: ^0.5.0 copied to clipboard
Flutter Plugin to render html, Flutter has no default support to render html so this package helps you to render your html to native widgets
flutter_html_view #
Flutter Plugin to render html as a Widget,
Flutter has no default support to render html so this package helps you to render your html to native widgets
- Video tag support added
- Links are clickable now
How to Use #
dependencies:
flutter_html_view: "^0.5.0"
import 'package:flutter_html_textview/flutter_html_textview.dart';
String html = '<body>Hello world! <a href="www.html5rocks.com">HTML5 rocks!';
new HtmlTextView(data: html);