flutter_html_view 0.5.2 copy "flutter_html_view: ^0.5.2" to clipboard
flutter_html_view: ^0.5.2 copied to clipboard

outdated

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

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_html_view/flutter_html_view.dart';

void main() => runApp(new MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => new _MyAppState();
}

class _MyAppState extends State<MyApp> {

  @override
  initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {

    String html = '<h1>This is &nbsp;heading 1</h1> <h2>This is heading 2</h2><h3>This is heading 3</h3><h4>This is heading 4</h4><h5>This is heading 5</h5><h6>This is heading 6</h6><p><img alt="Test Image" src="https://i.ytimg.com/vi/RHLknisJ-Sg/maxresdefault.jpg" /></p><p><video src="https://flutter.github.io/assets-for-api-docs/videos/bee.mp4"></video></p><a href="https://google.com">Go Google</a> <a href="mailto:[email protected]">Mail to me</a> ';

    return new MaterialApp(
      home: new Scaffold(
        appBar: new AppBar(
          title: new Text('Plugin example app'),
        ),
        body: new SingleChildScrollView(
          child: new Center(
            child: new HtmlView(data: html,),
          ),
        ),
      ),
    );
  }
}
26
likes
0
pub points
76%
popularity

Publisher

verified publisherkarthikponnam.dev

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

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

cached_network_image, flutter, flutter_custom_tabs, html, video_player

More

Packages that depend on flutter_html_view