Update DefaultStyles constructor

pull/13/head
Xin Yao 4 years ago
parent 78cdeab53a
commit 88014d73cd
  1. 77
      lib/widgets/default_styles.dart

@ -18,7 +18,7 @@ class QuillStyles extends InheritedWidget {
return data != oldWidget.data; return data != oldWidget.data;
} }
static DefaultStyles getStyles(BuildContext context, nullOk) { static DefaultStyles getStyles(BuildContext context, bool nullOk) {
var widget = context.dependOnInheritedWidgetOfExactType<QuillStyles>(); var widget = context.dependOnInheritedWidgetOfExactType<QuillStyles>();
if (widget == null && nullOk) { if (widget == null && nullOk) {
return null; return null;
@ -61,7 +61,7 @@ class DefaultStyles {
final DefaultTextBlockStyle align; final DefaultTextBlockStyle align;
DefaultStyles( DefaultStyles(
this.h1, {this.h1,
this.h2, this.h2,
this.h3, this.h3,
this.paragraph, this.paragraph,
@ -77,7 +77,7 @@ class DefaultStyles {
this.align, this.align,
this.sizeSmall, this.sizeSmall,
this.sizeLarge, this.sizeLarge,
this.sizeHuge); this.sizeHuge});
static DefaultStyles getInstance(BuildContext context) { static DefaultStyles getInstance(BuildContext context) {
ThemeData themeData = Theme.of(context); ThemeData themeData = Theme.of(context);
@ -104,7 +104,7 @@ class DefaultStyles {
} }
return DefaultStyles( return DefaultStyles(
DefaultTextBlockStyle( h1: DefaultTextBlockStyle(
defaultTextStyle.style.copyWith( defaultTextStyle.style.copyWith(
fontSize: 34.0, fontSize: 34.0,
color: defaultTextStyle.style.color.withOpacity(0.70), color: defaultTextStyle.style.color.withOpacity(0.70),
@ -114,7 +114,7 @@ class DefaultStyles {
Tuple2(16.0, 0.0), Tuple2(16.0, 0.0),
Tuple2(0.0, 0.0), Tuple2(0.0, 0.0),
null), null),
DefaultTextBlockStyle( h2: DefaultTextBlockStyle(
defaultTextStyle.style.copyWith( defaultTextStyle.style.copyWith(
fontSize: 24.0, fontSize: 24.0,
color: defaultTextStyle.style.color.withOpacity(0.70), color: defaultTextStyle.style.color.withOpacity(0.70),
@ -124,7 +124,7 @@ class DefaultStyles {
Tuple2(8.0, 0.0), Tuple2(8.0, 0.0),
Tuple2(0.0, 0.0), Tuple2(0.0, 0.0),
null), null),
DefaultTextBlockStyle( h3: DefaultTextBlockStyle(
defaultTextStyle.style.copyWith( defaultTextStyle.style.copyWith(
fontSize: 20.0, fontSize: 20.0,
color: defaultTextStyle.style.color.withOpacity(0.70), color: defaultTextStyle.style.color.withOpacity(0.70),
@ -134,17 +134,19 @@ class DefaultStyles {
Tuple2(8.0, 0.0), Tuple2(8.0, 0.0),
Tuple2(0.0, 0.0), Tuple2(0.0, 0.0),
null), null),
DefaultTextBlockStyle(baseStyle, baseSpacing, Tuple2(0.0, 0.0), null), paragraph: DefaultTextBlockStyle(
TextStyle(fontWeight: FontWeight.bold), baseStyle, baseSpacing, Tuple2(0.0, 0.0), null),
TextStyle(fontStyle: FontStyle.italic), bold: TextStyle(fontWeight: FontWeight.bold),
TextStyle(decoration: TextDecoration.underline), italic: TextStyle(fontStyle: FontStyle.italic),
TextStyle(decoration: TextDecoration.lineThrough), underline: TextStyle(decoration: TextDecoration.underline),
TextStyle( strikeThrough: TextStyle(decoration: TextDecoration.lineThrough),
link: TextStyle(
color: themeData.accentColor, color: themeData.accentColor,
decoration: TextDecoration.underline, decoration: TextDecoration.underline,
), ),
DefaultTextBlockStyle(baseStyle, baseSpacing, Tuple2(0.0, 6.0), null), lists: DefaultTextBlockStyle(
DefaultTextBlockStyle( baseStyle, baseSpacing, Tuple2(0.0, 6.0), null),
quote: DefaultTextBlockStyle(
TextStyle(color: baseStyle.color.withOpacity(0.6)), TextStyle(color: baseStyle.color.withOpacity(0.6)),
baseSpacing, baseSpacing,
Tuple2(6.0, 2.0), Tuple2(6.0, 2.0),
@ -153,7 +155,7 @@ class DefaultStyles {
left: BorderSide(width: 4, color: Colors.grey.shade300), left: BorderSide(width: 4, color: Colors.grey.shade300),
), ),
)), )),
DefaultTextBlockStyle( code: DefaultTextBlockStyle(
TextStyle( TextStyle(
color: Colors.blue.shade900.withOpacity(0.9), color: Colors.blue.shade900.withOpacity(0.9),
fontFamily: fontFamily, fontFamily: fontFamily,
@ -166,32 +168,33 @@ class DefaultStyles {
color: Colors.grey.shade50, color: Colors.grey.shade50,
borderRadius: BorderRadius.circular(2), borderRadius: BorderRadius.circular(2),
)), )),
DefaultTextBlockStyle(baseStyle, baseSpacing, Tuple2(0.0, 6.0), null), indent: DefaultTextBlockStyle(
DefaultTextBlockStyle( baseStyle, baseSpacing, Tuple2(0.0, 6.0), null),
align: DefaultTextBlockStyle(
baseStyle, Tuple2(0.0, 0.0), Tuple2(0.0, 0.0), null), baseStyle, Tuple2(0.0, 0.0), Tuple2(0.0, 0.0), null),
TextStyle(fontSize: 10.0), sizeSmall: TextStyle(fontSize: 10.0),
TextStyle(fontSize: 18.0), sizeLarge: TextStyle(fontSize: 18.0),
TextStyle(fontSize: 22.0)); sizeHuge: TextStyle(fontSize: 22.0));
} }
DefaultStyles merge(DefaultStyles other) { DefaultStyles merge(DefaultStyles other) {
return DefaultStyles( return DefaultStyles(
other.h1 ?? this.h1, h1: other.h1 ?? this.h1,
other.h2 ?? this.h2, h2: other.h2 ?? this.h2,
other.h3 ?? this.h3, h3: other.h3 ?? this.h3,
other.paragraph ?? this.paragraph, paragraph: other.paragraph ?? this.paragraph,
other.bold ?? this.bold, bold: other.bold ?? this.bold,
other.italic ?? this.italic, italic: other.italic ?? this.italic,
other.underline ?? this.underline, underline: other.underline ?? this.underline,
other.strikeThrough ?? this.strikeThrough, strikeThrough: other.strikeThrough ?? this.strikeThrough,
other.link ?? this.link, link: other.link ?? this.link,
other.lists ?? this.lists, lists: other.lists ?? this.lists,
other.quote ?? this.quote, quote: other.quote ?? this.quote,
other.code ?? this.code, code: other.code ?? this.code,
other.indent ?? this.indent, indent: other.indent ?? this.indent,
other.align ?? this.align, align: other.align ?? this.align,
other.sizeSmall ?? this.sizeSmall, sizeSmall: other.sizeSmall ?? this.sizeSmall,
other.sizeLarge ?? this.sizeLarge, sizeLarge: other.sizeLarge ?? this.sizeLarge,
other.sizeHuge ?? this.sizeHuge); sizeHuge: other.sizeHuge ?? this.sizeHuge);
} }
} }

Loading…
Cancel
Save