quill_delta 1.0.0-dev.1.0 copy "quill_delta: ^1.0.0-dev.1.0" to clipboard
quill_delta: ^1.0.0-dev.1.0 copied to clipboard

outdated

Implementation of Quill Delta format in Dart

Build Status Pub

Implementation of Quill editor Delta format in Dart. Refer to official documentation for more details.

Usage #

import 'package:quill_delta/quill_delta.dart';

void main() {
  var doc = new Delta()..insert('Hello world', {'h': '1'});
  var change = new Delta()
    ..retain(6)
    ..delete(5)
    ..insert('Earth');
  var result = doc.compose(change);
  print('Original document:\n$doc\n');
  print('Change:\n$change\n');
  print('Updated document:\n$result\n');

  /// Prints:
  ///
  ///     Original document:
  ///     ins⟨Hello world⟩ + {h: 1}
  ///
  ///     Change:
  ///     ret⟨6⟩
  ///     ins⟨Earth⟩
  ///     del⟨5⟩
  ///
  ///     Updated document:
  ///     ins⟨Hello ⟩ + {h: 1}
  ///     ins⟨Earth⟩
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

34
likes
0
pub points
87%
popularity

Publisher

unverified uploader

Implementation of Quill Delta format in Dart

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

collection, quiver_hashcode

More

Packages that depend on quill_delta