Upgrade to 7.0.3

pull/1145/head
X Code 2 years ago
parent f3b0fc83f6
commit 4c005e2a61
  1. 3
      CHANGELOG.md
  2. 3
      lib/src/widgets/style_widgets/number_point.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [7.0.3]
* Fix ordered list numeration for lists with more than one level of list.
# [7.0.2]
* Allow widgets to override widget span properties.

@ -29,8 +29,7 @@ class QuillNumberPoint extends StatelessWidget {
Widget build(BuildContext context) {
var s = index.toString();
int? level = 0;
if (!attrs.containsKey(Attribute.indent.key) &&
indentLevelCounts.isEmpty) {
if (!attrs.containsKey(Attribute.indent.key) && indentLevelCounts.isEmpty) {
indentLevelCounts.clear();
return Container(
alignment: AlignmentDirectional.topEnd,

@ -1,6 +1,6 @@
name: flutter_quill
description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
version: 7.0.2
version: 7.0.3
#author: bulletjournal
homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill

Loading…
Cancel
Save