pull/1489/head
Egor Korshun 1 year ago committed by GitHub
parent 7638535a33
commit 6019403b95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      CHANGELOG.md
  2. 12
      lib/src/models/documents/nodes/line.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
## [8.1.1]
- Fix null error in line.dart [#1487](https://github.com/singerdmx/flutter-quill/issues/1487)
## [8.1.0] ## [8.1.0]
- Fixes a word typo of `mirgration` to `migration` in readme & migration document. - Fixes a word typo of `mirgration` to `migration` in readme & migration document.
- Updated migration guide - Updated migration guide

@ -182,12 +182,12 @@ class Line extends Container<Leaf?> {
// nextLine might have been unmounted since last assert so we need to // nextLine might have been unmounted since last assert so we need to
// check again we still have a line after us. // check again we still have a line after us.
assert(nextLine != null); if (nextLine != null) {
// Move remaining children in this line to the next line so that all
// Move remaining children in this line to the next line so that all // attributes of nextLine are preserved.
// attributes of nextLine are preserved. nextLine?.moveChildToNewParent(this);
nextLine!.moveChildToNewParent(this); moveChildToNewParent(nextLine);
moveChildToNewParent(nextLine); }
} }
if (isLFDeleted) { if (isLFDeleted) {

@ -1,6 +1,6 @@
name: flutter_quill name: flutter_quill
description: A rich text editor built for the modern Android, iOS, web and desktop platforms. It is the WYSIWYG editor and a Quill component for Flutter. description: A rich text editor built for the modern Android, iOS, web and desktop platforms. It is the WYSIWYG editor and a Quill component for Flutter.
version: 8.1.0 version: 8.1.1
homepage: https://1o24bbs.com/c/bulletjournal/108 homepage: https://1o24bbs.com/c/bulletjournal/108
repository: https://github.com/singerdmx/flutter-quill repository: https://github.com/singerdmx/flutter-quill
topics: topics:

Loading…
Cancel
Save