Upgrade to 4.2.3

pull/830/head
X Code 3 years ago
parent c40faa47e2
commit b398460f31
  1. 3
      CHANGELOG.md
  2. 4
      lib/src/utils/color.dart
  3. 2
      lib/src/widgets/text_line.dart
  4. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [4.2.3]
* Ignore color:inherit and convert double to int for level.
# [4.2.2]
* Add clear option to font size dropdown.

@ -1,6 +1,6 @@
import 'package:flutter/material.dart';
Color stringToColor(String? s) {
Color stringToColor(String? s, [Color? originalColor]) {
switch (s) {
case 'transparent':
return Colors.transparent;
@ -114,7 +114,7 @@ Color stringToColor(String? s) {
// TODO: take care of "color": "inherit"
if (s.startsWith('inherit')) {
return Colors.black;
return originalColor ?? Colors.black;
}
if (!s.startsWith('#')) {

@ -308,7 +308,7 @@ class _TextLineState extends State<TextLine> {
if (k == Attribute.underline.key || k == Attribute.strikeThrough.key) {
var textColor = defaultStyles.color;
if (color?.value is String) {
textColor = stringToColor(color?.value);
textColor = stringToColor(color?.value, textColor);
}
res = _merge(res.copyWith(decorationColor: textColor),
s!.copyWith(decorationColor: textColor));

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

Loading…
Cancel
Save