flutter_super_html_viewer 0.0.1 flutter_super_html_viewer: ^0.0.1 copied to clipboard
A Flutter plugin that provides a HtmlViewer widget on multiple platforms
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add flutter_super_html_viewer
With Flutter:
$ flutter pub add flutter_super_html_viewer
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
flutter_super_html_viewer: ^0.0.1
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:flutter_super_html_viewer/shims/dart_ui.dart';
import 'package:flutter_super_html_viewer/shims/dart_ui_fake.dart';
import 'package:flutter_super_html_viewer/shims/dart_ui_real.dart';
import 'package:flutter_super_html_viewer/utils/color_utils.dart';
import 'package:flutter_super_html_viewer/utils/html_event_action.dart';
import 'package:flutter_super_html_viewer/utils/html_utils.dart';
import 'package:flutter_super_html_viewer/view/mobile/mobile_html_content_viewer.dart';
import 'package:flutter_super_html_viewer/view/web/web_html_content_viewer.dart';
import 'package:flutter_super_html_viewer/view/web/web_html_content_viewer_controller.dart';