Rich text editor for Flutter
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Ellet c02699071a
Version 9.0.0 (#1566)
1 year ago
..
lib Version 9.0.0 (#1566) 1 year ago
test feat: Html converter package (#1523) 1 year ago
.gitignore feat: Html converter package (#1523) 1 year ago
.metadata feat: Html converter package (#1523) 1 year ago
CHANGELOG.md Version 9.0.0 (#1566) 1 year ago
LICENSE feat: Html converter package (#1523) 1 year ago
README.md feat: Html converter package (#1523) 1 year ago
analysis_options.yaml feat: Html converter package (#1523) 1 year ago
pubspec.yaml Version 9.0.0 (#1566) 1 year ago
pubspec_overrides.yaml.disabled refactor: Rename pubspec_overrides.yaml.g to pubspec_overrides.yaml.disabled 1 year ago

README.md

Flutter Quill HTML

A extension for flutter_quill package to add support for dealing with conversion to/from html

It uses vsc_quill_delta_to_html package to convert the the delta to HTML

This library is experimental and the support might be dropped at anytime.

Features

- Easy to use
- Support Flutter Quill package

Getting started

dependencies:
  quill_html_converter: ^<latest-version-here>

Usage

First, you need to setup the flutter_quill first

Then you can simply convert to/from HTML

import 'package:quill_html_converter/quill_html_converter.dart';

// Convert Delta to HTML
final html = _controller.document.toDelta().toHtml();

// Load Delta document using HTML
_controller.document =
    Document.fromDelta(DeltaHtmlExt.fromHtml(html));

Additional information

This will be updated soon.