updage color generator

fdroid
Kherel 2020-12-08 20:47:50 +01:00
parent 9a8c16344f
commit 600df97abf
2 changed files with 8 additions and 1510 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,47 +0,0 @@
// library text_extension;
// import 'package:flutter/material.dart';
// import 'package:flutter/cupertino.dart';
// import 'package:selfprivacy/config/text_themes.dart';
// extension TextExtension on Text {
// Text get h1 => copyWith(style: headline1Style);
// Text get h2 => copyWith(style: headline2Style);
// Text get h3 => copyWith(style: headline3Style);
// Text get caption => copyWith(style: headline4Style);
// Text get body1 => copyWith(style: body1Style);
// Text get body2 => copyWith(style: body2Style);
// Text get small => copyWith(style: smallStyle);
// Text setKey(Key key) => copyWith(key: key);
// Text copyWith(
// {Key key,
// StrutStyle strutStyle,
// TextAlign textAlign,
// TextDirection textDirection = TextDirection.ltr,
// Locale locale,
// bool softWrap,
// TextOverflow overflow,
// double textScaleFactor,
// int maxLines,
// String semanticsLabel,
// TextWidthBasis textWidthBasis,
// TextStyle style}) {
// return Text(data,
// key: key ?? this.key,
// strutStyle: strutStyle ?? this.strutStyle,
// textAlign: textAlign ?? this.textAlign,
// textDirection: textDirection ?? this.textDirection,
// locale: locale ?? this.locale,
// softWrap: softWrap ?? this.softWrap,
// overflow: overflow ?? this.overflow,
// textScaleFactor: textScaleFactor ?? this.textScaleFactor,
// maxLines: maxLines ?? this.maxLines,
// semanticsLabel: semanticsLabel ?? this.semanticsLabel,
// textWidthBasis: textWidthBasis ?? this.textWidthBasis,
// style: style != null ? this.style?.merge(style) ?? style : this.style);
// }
// }