htmlencodedtext 0.0.1 copy "htmlencodedtext: ^0.0.1" to clipboard
htmlencodedtext: ^0.0.1 copied to clipboard

outdatedDart 1 only

A new flutter package project.

htmlencodedtext #

A Flutter plugin that makes it easier to show HTML Encoded Text in your Material Flutter apps.

Dependencies #

This project used html_unescape to help facilitate converting HTML entities:

  • Named Character References ( ) (2099 of them)
  • Decimal Character References (รก)
  • Hexadecimal Character References (&#xE3)

For help getting started with Flutter, view our online documentation.

For help on editing package code, view the documentation.

Usage #

class MyApp extends StatelessWidget {
  static final String html =
      '<b>Lorem</b> <i>ipsum</i> <u>dolor</u> <span style="color: #FF0000">sit</span> ' +
          '<span style="text-decoration: underline; font-weight: bold; font-style: italic">amet</span>, ' +
          '<a hef="#">consectetur adipiscing elit</a>, sed do eiusmod tempor incididunt ut ' +
          'labore Foo &#xA9; bar ๐Ÿ˜€ baz &#x2603; qux et dolore magna aliqua. Ut enim ad &#1F600; minim veniam, quis nostrud exercitation' +
          '<h2>I will display &spades;</h2>' +
          '<p>I will display &#9824;</p>' +
          '<p>I will display &#x2660;</p>';

  final htmlWidg = new HtmlEncodedText(rawHtml: html);
  Widget build(BuildContext context) {
    return Container(
      child: htmlWidg.build(context),
    );
  }
}

implement our main method

void main() {
  runApp(MaterialApp(
    home: MyApp(),
    builder: (context, snapshot) {
      return Scaffold(
        appBar: AppBar(),
        body: MyApp(),
      );
    },
  ));
}

Issues #

Don't hesitate to create pull requests.

Roadmap

  • Support block status for HTML heading tags
0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A new flutter package project.

Homepage

License

unknown (LICENSE)

Dependencies

cupertino_icons, flutter, flutter_html_view, html_unescape

More

Packages that depend on htmlencodedtext