Compare commits
No commits in common. "2769d45e201c649533efc935a68904293fc4c2d0" and "c5f8b69184cdcf3a92f4580b61233595a69689bd" have entirely different histories.
2769d45e20
...
c5f8b69184
@ -1,9 +0,0 @@
|
|||||||
targets:
|
|
||||||
$default:
|
|
||||||
builders:
|
|
||||||
# Typically the builder key is just the package name, run `pub run build_runner doctor` to check your config.
|
|
||||||
wyatt_component_copy_with_gen:component_copy_with_gen:
|
|
||||||
generate_for:
|
|
||||||
# Example glob for only the Dart files under `lib/models`
|
|
||||||
- lib/**/*.dart
|
|
||||||
- example/lib/**/*.dart
|
|
@ -15,11 +15,10 @@
|
|||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import 'package:flutter/widgets.dart';
|
import 'package:flutter/widgets.dart';
|
||||||
import 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
import 'package:wyatt_ui_components/src/core/utils/text_wrapper.dart';
|
||||||
|
|
||||||
extension StringExtension on String? {
|
extension StringExtension on String? {
|
||||||
TextWrapper? wrap({TextStyle? style, MultiColor? gradientColors}) =>
|
TextWrapper? wrap({TextStyle? style, List<Color>? gradient}) => this != null
|
||||||
this != null
|
? TextWrapper(this!, style: style, gradient: gradient)
|
||||||
? TextWrapper(this!, style: style, gradientColors: gradientColors)
|
|
||||||
: null;
|
: null;
|
||||||
}
|
}
|
||||||
|
@ -15,22 +15,17 @@
|
|||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
|
||||||
|
|
||||||
/// Wraps [String] and [TextStyle] into one object that can be
|
|
||||||
/// a [Text] or a [RichText].
|
|
||||||
class TextWrapper {
|
class TextWrapper {
|
||||||
const TextWrapper(
|
const TextWrapper(
|
||||||
this.text, {
|
this.text, {
|
||||||
this.style,
|
this.style,
|
||||||
this.gradientColors,
|
this.gradient,
|
||||||
});
|
});
|
||||||
|
|
||||||
const TextWrapper.text(this.text)
|
factory TextWrapper.text(String text) => TextWrapper(text);
|
||||||
: style = null,
|
|
||||||
gradientColors = null;
|
|
||||||
|
|
||||||
final String text;
|
final String text;
|
||||||
final TextStyle? style;
|
final TextStyle? style;
|
||||||
final MultiColor? gradientColors;
|
final List<Color>? gradient;
|
||||||
}
|
}
|
||||||
|
@ -23,5 +23,4 @@ export './error_widget_component.dart';
|
|||||||
export './loader_component.dart';
|
export './loader_component.dart';
|
||||||
export './loader_style.dart';
|
export './loader_style.dart';
|
||||||
export './loading_widget_component.dart';
|
export './loading_widget_component.dart';
|
||||||
export './rich_text_builder/rich_text_builder.dart';
|
|
||||||
export './theme_style.dart';
|
export './theme_style.dart';
|
||||||
|
@ -1,120 +0,0 @@
|
|||||||
// Copyright (C) 2023 WYATT GROUP
|
|
||||||
// Please see the AUTHORS file for details.
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
import 'package:flutter/widgets.dart';
|
|
||||||
|
|
||||||
class RichTextStyleParameter {
|
|
||||||
const RichTextStyleParameter(
|
|
||||||
this.defaultStyle,
|
|
||||||
this.definedStyle,
|
|
||||||
this.styleName,
|
|
||||||
);
|
|
||||||
|
|
||||||
final TextStyle defaultStyle;
|
|
||||||
final Map<String, TextStyle> definedStyle;
|
|
||||||
final String? styleName;
|
|
||||||
|
|
||||||
TextStyle get style {
|
|
||||||
if (definedStyle.containsKey(styleName)) {
|
|
||||||
return definedStyle[styleName]!;
|
|
||||||
}
|
|
||||||
return defaultStyle;
|
|
||||||
}
|
|
||||||
|
|
||||||
RichTextStyleParameter copyWith({
|
|
||||||
TextStyle? defaultStyle,
|
|
||||||
Map<String, TextStyle>? definedStyle,
|
|
||||||
String? styleName,
|
|
||||||
}) =>
|
|
||||||
RichTextStyleParameter(
|
|
||||||
defaultStyle ?? this.defaultStyle,
|
|
||||||
definedStyle ?? this.definedStyle,
|
|
||||||
styleName ?? this.styleName,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class RichTextNode {
|
|
||||||
RichTextNode(this.nodes);
|
|
||||||
|
|
||||||
final List<RichTextNode> nodes;
|
|
||||||
|
|
||||||
static RichTextNode from(
|
|
||||||
String content,
|
|
||||||
RegExp regex,
|
|
||||||
RichTextStyleParameter styleParameter,
|
|
||||||
) {
|
|
||||||
final matches = regex.allMatches(content);
|
|
||||||
if (matches.isNotEmpty) {
|
|
||||||
// match found -> construct node with leaf/nodes
|
|
||||||
final List<RichTextNode> nodes = [];
|
|
||||||
for (var i = 0; i < matches.length; i++) {
|
|
||||||
final previousMatch = i > 0 ? matches.elementAt(i - 1) : null;
|
|
||||||
final currentMatch = matches.elementAt(i);
|
|
||||||
// non match before
|
|
||||||
final nonMatchBefore = (previousMatch != null)
|
|
||||||
? content.substring(previousMatch.end, currentMatch.start)
|
|
||||||
: content.substring(0, currentMatch.start);
|
|
||||||
nodes
|
|
||||||
..add(RichTextNode.from(nonMatchBefore, regex, styleParameter))
|
|
||||||
// match
|
|
||||||
..add(
|
|
||||||
RichTextNode.from(
|
|
||||||
currentMatch.group(2)!,
|
|
||||||
regex,
|
|
||||||
styleParameter.copyWith(styleName: currentMatch.group(1)),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
// non match after
|
|
||||||
final nonMatchAfter = content.substring(matches.last.end);
|
|
||||||
nodes.add(RichTextNode.from(nonMatchAfter, regex, styleParameter));
|
|
||||||
return RichTextNode(nodes);
|
|
||||||
} else {
|
|
||||||
// match not found -> construct leaf
|
|
||||||
return RichTextLeaf(styleParameter.style, content);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
InlineSpan toInlineSpan(RichTextParser parser) {
|
|
||||||
final children = <InlineSpan>[];
|
|
||||||
for (final node in nodes) {
|
|
||||||
children.add(node.toInlineSpan(parser));
|
|
||||||
}
|
|
||||||
return TextSpan(children: children);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class RichTextLeaf extends RichTextNode {
|
|
||||||
RichTextLeaf(this.style, this.content) : super([]);
|
|
||||||
|
|
||||||
final TextStyle style;
|
|
||||||
final String content;
|
|
||||||
|
|
||||||
@override
|
|
||||||
InlineSpan toInlineSpan(RichTextParser parser) =>
|
|
||||||
parser.nodeBuilder.call(content, style);
|
|
||||||
}
|
|
||||||
|
|
||||||
class RichTextParser {
|
|
||||||
const RichTextParser({required this.nodeBuilder});
|
|
||||||
factory RichTextParser.defaultBuilder() => RichTextParser(
|
|
||||||
nodeBuilder: (content, style) => TextSpan(
|
|
||||||
text: content,
|
|
||||||
style: style,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
final InlineSpan Function(String content, TextStyle style) nodeBuilder;
|
|
||||||
}
|
|
@ -1,19 +0,0 @@
|
|||||||
// Copyright (C) 2023 WYATT GROUP
|
|
||||||
// Please see the AUTHORS file for details.
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
export 'parser.dart';
|
|
||||||
export 'rich_text_builder_component.dart';
|
|
||||||
export 'rich_text_builder_style.dart';
|
|
@ -1,56 +0,0 @@
|
|||||||
// Copyright (C) 2023 WYATT GROUP
|
|
||||||
// Please see the AUTHORS file for details.
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
import 'package:flutter/widgets.dart';
|
|
||||||
import 'package:wyatt_component_copy_with_extension/component_copy_with_extension.dart';
|
|
||||||
import 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
|
||||||
|
|
||||||
part 'rich_text_builder_component.g.dart';
|
|
||||||
|
|
||||||
@ComponentProxyExtension()
|
|
||||||
abstract class RichTextBuilderComponent extends Component
|
|
||||||
with CopyWithMixin<$RichTextBuilderComponentCWProxy> {
|
|
||||||
const RichTextBuilderComponent({
|
|
||||||
this.text,
|
|
||||||
this.parser,
|
|
||||||
this.defaultStyle,
|
|
||||||
this.styles,
|
|
||||||
super.themeResolver,
|
|
||||||
super.key,
|
|
||||||
});
|
|
||||||
|
|
||||||
/// Full text
|
|
||||||
final String? text;
|
|
||||||
|
|
||||||
/// How to build InlineSpans
|
|
||||||
final RichTextParser? parser;
|
|
||||||
|
|
||||||
/// Default TextStyle used in this rich text component.
|
|
||||||
final TextStyle? defaultStyle;
|
|
||||||
|
|
||||||
/// Used styles in this rich text component.
|
|
||||||
///
|
|
||||||
/// e.g.
|
|
||||||
/// ```dart
|
|
||||||
/// styles = {'red': TextStyle(color: Colors.red)};
|
|
||||||
/// ```
|
|
||||||
/// will transform:
|
|
||||||
/// ```text
|
|
||||||
/// This text <red>is red</red.
|
|
||||||
/// ```
|
|
||||||
/// in "This text `is red`."
|
|
||||||
final Map<String, TextStyle>? styles;
|
|
||||||
}
|
|
@ -1,25 +0,0 @@
|
|||||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
||||||
|
|
||||||
part of 'rich_text_builder_component.dart';
|
|
||||||
|
|
||||||
// **************************************************************************
|
|
||||||
// ComponentProxyGenerator
|
|
||||||
// **************************************************************************
|
|
||||||
|
|
||||||
abstract class $RichTextBuilderComponentCWProxy {
|
|
||||||
RichTextBuilderComponent text(String? text);
|
|
||||||
RichTextBuilderComponent parser(RichTextParser? parser);
|
|
||||||
RichTextBuilderComponent defaultStyle(TextStyle? defaultStyle);
|
|
||||||
RichTextBuilderComponent styles(Map<String, TextStyle>? styles);
|
|
||||||
RichTextBuilderComponent themeResolver(
|
|
||||||
ThemeResolver<dynamic, dynamic, dynamic>? themeResolver);
|
|
||||||
RichTextBuilderComponent key(Key? key);
|
|
||||||
RichTextBuilderComponent call({
|
|
||||||
String? text,
|
|
||||||
RichTextParser? parser,
|
|
||||||
TextStyle? defaultStyle,
|
|
||||||
Map<String, TextStyle>? styles,
|
|
||||||
ThemeResolver<dynamic, dynamic, dynamic>? themeResolver,
|
|
||||||
Key? key,
|
|
||||||
});
|
|
||||||
}
|
|
@ -1,83 +0,0 @@
|
|||||||
// Copyright (C) 2023 WYATT GROUP
|
|
||||||
// Please see the AUTHORS file for details.
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
import 'package:flutter/widgets.dart';
|
|
||||||
import 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
|
||||||
|
|
||||||
class RichTextBuilderStyle extends ThemeStyle<RichTextBuilderStyle> {
|
|
||||||
const RichTextBuilderStyle({
|
|
||||||
this.defaultStyle,
|
|
||||||
this.styles,
|
|
||||||
});
|
|
||||||
|
|
||||||
/// Merges non-null `b` attributes in `a`
|
|
||||||
static RichTextBuilderStyle? merge(
|
|
||||||
RichTextBuilderStyle? a,
|
|
||||||
RichTextBuilderStyle? b,
|
|
||||||
) {
|
|
||||||
if (b == null) {
|
|
||||||
return a?.copyWith();
|
|
||||||
}
|
|
||||||
if (a == null) {
|
|
||||||
return b.copyWith();
|
|
||||||
}
|
|
||||||
|
|
||||||
return a.copyWith(
|
|
||||||
defaultStyle: b.defaultStyle,
|
|
||||||
styles: b.styles,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Used for interpolation.
|
|
||||||
static RichTextBuilderStyle? lerp(
|
|
||||||
RichTextBuilderStyle? a,
|
|
||||||
RichTextBuilderStyle? b,
|
|
||||||
double t,
|
|
||||||
) {
|
|
||||||
if (a == null || b == null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
// b.copyWith to return b attributes even if they are not lerped
|
|
||||||
return b.copyWith(
|
|
||||||
defaultStyle: TextStyle.lerp(a.defaultStyle, b.defaultStyle, t),
|
|
||||||
styles: b.styles, // TODO(wyatt): compute lerp value of each styles
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Default TextStyle used in this rich text component.
|
|
||||||
final TextStyle? defaultStyle;
|
|
||||||
|
|
||||||
/// Used styles in this rich text component.
|
|
||||||
final Map<String, TextStyle>? styles;
|
|
||||||
|
|
||||||
@override
|
|
||||||
RichTextBuilderStyle mergeWith(RichTextBuilderStyle? other) =>
|
|
||||||
RichTextBuilderStyle.merge(this, other)!;
|
|
||||||
|
|
||||||
@override
|
|
||||||
RichTextBuilderStyle? lerpWith(RichTextBuilderStyle? other, double t) =>
|
|
||||||
RichTextBuilderStyle.lerp(this, other, t);
|
|
||||||
|
|
||||||
@override
|
|
||||||
RichTextBuilderStyle copyWith({
|
|
||||||
TextStyle? defaultStyle,
|
|
||||||
Map<String, TextStyle>? styles,
|
|
||||||
}) =>
|
|
||||||
RichTextBuilderStyle(
|
|
||||||
defaultStyle: defaultStyle ?? this.defaultStyle,
|
|
||||||
styles: styles ?? this.styles,
|
|
||||||
);
|
|
||||||
}
|
|
@ -1,8 +0,0 @@
|
|||||||
targets:
|
|
||||||
$default:
|
|
||||||
builders:
|
|
||||||
# Typically the builder key is just the package name, run `pub run build_runner doctor` to check your config.
|
|
||||||
wyatt_component_copy_with_gen:component_copy_with_gen:
|
|
||||||
generate_for:
|
|
||||||
# Example glob for only the Dart files under `lib/models`
|
|
||||||
- lib/**/*.dart
|
|
@ -31,14 +31,8 @@ class FlatButtons extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
const Gap(20),
|
const Gap(20),
|
||||||
Center(
|
Center(
|
||||||
/// You can overwrite global textstyle of the label with [label],
|
|
||||||
/// but if you only want to override the color/gradient of the text
|
|
||||||
/// in a particular case you can override the style that will
|
|
||||||
/// be merge during the build.
|
|
||||||
child: FlatButton(
|
child: FlatButton(
|
||||||
label: const TextWrapper(
|
label: const TextWrapper('Voir notre savoir faire'),
|
||||||
'Voir notre savoir faire',
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const Gap(20),
|
const Gap(20),
|
||||||
|
@ -18,13 +18,13 @@ class InformationCards extends StatelessWidget {
|
|||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
const InformationCard(
|
InformationCard(
|
||||||
icons: [
|
icons: const [
|
||||||
FlutterLogo(size: 60),
|
FlutterLogo(size: 60),
|
||||||
FlutterLogo(size: 60),
|
FlutterLogo(size: 60),
|
||||||
FlutterLogo(size: 60),
|
FlutterLogo(size: 60),
|
||||||
],
|
],
|
||||||
title: TextWrapper('Flutter'),
|
title: const TextWrapper('Flutter'),
|
||||||
subtitle: TextWrapper.text('One single code base.'),
|
subtitle: TextWrapper.text('One single code base.'),
|
||||||
body: TextWrapper.text(
|
body: TextWrapper.text(
|
||||||
'Cupidatat reprehenderit aliqua eiusmod Lorem. '
|
'Cupidatat reprehenderit aliqua eiusmod Lorem. '
|
||||||
@ -58,9 +58,9 @@ class InformationCards extends StatelessWidget {
|
|||||||
FlutterLogo(size: 60),
|
FlutterLogo(size: 60),
|
||||||
],
|
],
|
||||||
title: 'Flutter'.wrap(
|
title: 'Flutter'.wrap(
|
||||||
gradientColors: const MultiColor([Colors.blue, Colors.green]),
|
gradient: [Colors.blue, Colors.green],
|
||||||
),
|
),
|
||||||
subtitle: const TextWrapper.text('One single code base.'),
|
subtitle: TextWrapper.text('One single code base.'),
|
||||||
body: 'Cupidatat reprehenderit aliqua eiusmod Lorem. '
|
body: 'Cupidatat reprehenderit aliqua eiusmod Lorem. '
|
||||||
'Qui ipsum id ea ea nulla labore aute ullamco aute '
|
'Qui ipsum id ea ea nulla labore aute ullamco aute '
|
||||||
'quis elit ut amet velit. Incididunt fugiat proident '
|
'quis elit ut amet velit. Incididunt fugiat proident '
|
||||||
@ -86,8 +86,8 @@ class InformationCards extends StatelessWidget {
|
|||||||
FlutterLogo(size: 60),
|
FlutterLogo(size: 60),
|
||||||
],
|
],
|
||||||
axis: Axis.horizontal,
|
axis: Axis.horizontal,
|
||||||
title: const TextWrapper.text('Flutter'),
|
title: TextWrapper.text('Flutter'),
|
||||||
subtitle: const TextWrapper.text('One single code base.'),
|
subtitle: TextWrapper.text('One single code base.'),
|
||||||
body: 'Cupidatat reprehenderit aliqua eiusmod Lorem. '
|
body: 'Cupidatat reprehenderit aliqua eiusmod Lorem. '
|
||||||
'Qui ipsum id ea ea nulla labore aute ullamco aute '
|
'Qui ipsum id ea ea nulla labore aute ullamco aute '
|
||||||
'quis elit ut amet velit. Incididunt fugiat proident '
|
'quis elit ut amet velit. Incididunt fugiat proident '
|
||||||
@ -100,10 +100,10 @@ class InformationCards extends StatelessWidget {
|
|||||||
'magna cupidatat Lorem nulla cupidatat voluptate '
|
'magna cupidatat Lorem nulla cupidatat voluptate '
|
||||||
'irure ex reprehenderit.'
|
'irure ex reprehenderit.'
|
||||||
.wrap(
|
.wrap(
|
||||||
gradientColors: const MultiColor([
|
gradient: [
|
||||||
Colors.red,
|
Colors.red,
|
||||||
Colors.orange,
|
Colors.orange,
|
||||||
]),
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const Gap(20),
|
const Gap(20),
|
||||||
@ -123,14 +123,14 @@ class InformationCards extends StatelessWidget {
|
|||||||
FlutterLogo(size: 60),
|
FlutterLogo(size: 60),
|
||||||
],
|
],
|
||||||
axis: Axis.horizontal,
|
axis: Axis.horizontal,
|
||||||
title: const TextWrapper.text('Flutter'),
|
title: TextWrapper.text('Flutter'),
|
||||||
subtitle: 'One single code base.'.wrap(
|
subtitle: 'One single code base.'.wrap(
|
||||||
// gradient: [Colors.blue, Colors.green],
|
// gradient: [Colors.blue, Colors.green],
|
||||||
style: const TextStyle(
|
style: const TextStyle(
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
body: const TextWrapper.text(
|
body: TextWrapper.text(
|
||||||
'Cupidatat reprehenderit aliqua eiusmod Lorem. '
|
'Cupidatat reprehenderit aliqua eiusmod Lorem. '
|
||||||
'Qui ipsum id ea ea nulla labore aute ullamco aute '
|
'Qui ipsum id ea ea nulla labore aute ullamco aute '
|
||||||
'quis elit ut amet velit. Incididunt fugiat proident '
|
'quis elit ut amet velit. Incididunt fugiat proident '
|
||||||
|
@ -128,10 +128,10 @@ class PortfolioCards extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
projectName: const TextWrapper(
|
projectName: const TextWrapper(
|
||||||
'Flutter',
|
'Flutter',
|
||||||
gradientColors: MultiColor([
|
gradient: [
|
||||||
Colors.blue,
|
Colors.blue,
|
||||||
Colors.green,
|
Colors.green,
|
||||||
]),
|
],
|
||||||
),
|
),
|
||||||
subtitle: const TextWrapper('Mobile / Web / Macos.'),
|
subtitle: const TextWrapper('Mobile / Web / Macos.'),
|
||||||
description: const TextWrapper(
|
description: const TextWrapper(
|
||||||
|
@ -49,12 +49,7 @@ class QuoteCards extends StatelessWidget {
|
|||||||
'quis elit ut amet velit. Incididunt fugiat proident '
|
'quis elit ut amet velit. Incididunt fugiat proident '
|
||||||
'proident deserunt tempor Lorem cillum qui do '
|
'proident deserunt tempor Lorem cillum qui do '
|
||||||
'ullamco Lorem magna ipsum. Ullamco cupidatat velit '
|
'ullamco Lorem magna ipsum. Ullamco cupidatat velit '
|
||||||
.wrap(
|
.wrap(gradient: [Colors.red, Colors.orange]),
|
||||||
gradientColors: const MultiColor([
|
|
||||||
Colors.red,
|
|
||||||
Colors.orange,
|
|
||||||
]),
|
|
||||||
),
|
|
||||||
avatar: const FlutterLogo(
|
avatar: const FlutterLogo(
|
||||||
size: 40,
|
size: 40,
|
||||||
),
|
),
|
||||||
|
@ -44,7 +44,7 @@ class SkillCards extends StatelessWidget {
|
|||||||
'proident deserunt tempor Lorem cillum qui do '
|
'proident deserunt tempor Lorem cillum qui do '
|
||||||
'ullamco Lorem magna ipsum. Ullamco cupidatat velit '
|
'ullamco Lorem magna ipsum. Ullamco cupidatat velit '
|
||||||
.wrap(),
|
.wrap(),
|
||||||
skills: const [
|
skills: [
|
||||||
TextWrapper.text('Firebase'),
|
TextWrapper.text('Firebase'),
|
||||||
TextWrapper.text(
|
TextWrapper.text(
|
||||||
'Qui ipsum id ea ea nulla labore aute ullamco aute ',
|
'Qui ipsum id ea ea nulla labore aute ullamco aute ',
|
||||||
@ -62,14 +62,11 @@ class SkillCards extends StatelessWidget {
|
|||||||
'proident deserunt tempor Lorem cillum qui do '
|
'proident deserunt tempor Lorem cillum qui do '
|
||||||
'ullamco Lorem magna ipsum. Ullamco cupidatat velit '
|
'ullamco Lorem magna ipsum. Ullamco cupidatat velit '
|
||||||
.wrap(),
|
.wrap(),
|
||||||
skills: const [
|
skills: [
|
||||||
TextWrapper.text('Firebase'),
|
TextWrapper.text('Firebase'),
|
||||||
TextWrapper(
|
const TextWrapper(
|
||||||
'Qui ipsum id ea ea nulla labore aute ullamco aute ',
|
'Qui ipsum id ea ea nulla labore aute ullamco aute ',
|
||||||
gradientColors: MultiColor([
|
gradient: [Colors.red, Colors.orange],
|
||||||
Colors.red,
|
|
||||||
Colors.orange,
|
|
||||||
]),
|
|
||||||
),
|
),
|
||||||
TextWrapper.text('Firebase'),
|
TextWrapper.text('Firebase'),
|
||||||
TextWrapper.text('Firebase'),
|
TextWrapper.text('Firebase'),
|
||||||
|
@ -5,7 +5,6 @@ import 'package:wyatt_ui_kit_example/buttons/buttons.dart';
|
|||||||
import 'package:wyatt_ui_kit_example/cards/cards.dart';
|
import 'package:wyatt_ui_kit_example/cards/cards.dart';
|
||||||
import 'package:wyatt_ui_kit_example/demo_page.dart';
|
import 'package:wyatt_ui_kit_example/demo_page.dart';
|
||||||
import 'package:wyatt_ui_kit_example/loaders/loaders.dart';
|
import 'package:wyatt_ui_kit_example/loaders/loaders.dart';
|
||||||
import 'package:wyatt_ui_kit_example/rich_text_builders/rich_text_builders.dart';
|
|
||||||
import 'package:wyatt_ui_kit_example/theme/themes.dart';
|
import 'package:wyatt_ui_kit_example/theme/themes.dart';
|
||||||
|
|
||||||
const String title = 'Wyatt UIKit Example';
|
const String title = 'Wyatt UIKit Example';
|
||||||
@ -21,12 +20,7 @@ class Home extends StatefulWidget {
|
|||||||
|
|
||||||
class _HomeState extends State<Home> {
|
class _HomeState extends State<Home> {
|
||||||
// Simply add your demo page here.
|
// Simply add your demo page here.
|
||||||
final List<DemoPage> pages = const [
|
final List<DemoPage> pages = const [Cards(), Buttons(), Loaders()];
|
||||||
Cards(),
|
|
||||||
Buttons(),
|
|
||||||
Loaders(),
|
|
||||||
RichTextBuilders(),
|
|
||||||
];
|
|
||||||
|
|
||||||
int currentIndex = 0;
|
int currentIndex = 0;
|
||||||
|
|
||||||
|
@ -1,63 +0,0 @@
|
|||||||
// Copyright (C) 2023 WYATT GROUP
|
|
||||||
// Please see the AUTHORS file for details.
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:gap/gap.dart';
|
|
||||||
import 'package:wyatt_ui_kit/wyatt_ui_kit.dart';
|
|
||||||
import 'package:wyatt_ui_kit_example/demo_page.dart';
|
|
||||||
|
|
||||||
class RichTextBuilders extends DemoPage {
|
|
||||||
const RichTextBuilders({super.key});
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get title => 'RichTextBuilders';
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) => ListView(
|
|
||||||
cacheExtent: 1000,
|
|
||||||
children: [
|
|
||||||
const Gap(20),
|
|
||||||
Align(
|
|
||||||
child: Text(
|
|
||||||
title,
|
|
||||||
style: Theme.of(context).textTheme.titleLarge,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const Gap(20),
|
|
||||||
const Padding(
|
|
||||||
padding: EdgeInsets.all(8),
|
|
||||||
child: RichTextBuilder(
|
|
||||||
text: '''
|
|
||||||
Innovation, Expertise et Accompagnement...
|
|
||||||
Notre agence de développement Wyatt Studio met tout en oeuvre pour vous aider à <gradient-blue>concrétiser vos idées</gradient-blue> de solutions informatiques et mobiles.
|
|
||||||
|
|
||||||
Vous aussi, comme beaucoup d’autres <gradient-blue>agences ou startups</gradient-blue>, faites nous confiance pour la réalisation de votre projet dès maintenant !
|
|
||||||
''',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const Gap(20),
|
|
||||||
const Padding(
|
|
||||||
padding: EdgeInsets.all(8),
|
|
||||||
child: RichTextBuilder(
|
|
||||||
text: '''
|
|
||||||
Je peux être <blue>bleu</blue>, ou même <gradient-red>rouge en dégradé</gradient-red>. À vrai dire <green>je peux</green> être <gradient-blue>un peu</gradient-blue> n'importe quelle couleur.
|
|
||||||
''',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const Gap(20),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
}
|
|
@ -1,127 +0,0 @@
|
|||||||
// Copyright (C) 2023 WYATT GROUP
|
|
||||||
// Please see the AUTHORS file for details.
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:google_fonts/google_fonts.dart';
|
|
||||||
import 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
|
||||||
import 'package:wyatt_ui_kit/wyatt_ui_kit.dart';
|
|
||||||
|
|
||||||
class CardTheme extends CardThemeExtension {
|
|
||||||
const CardTheme({
|
|
||||||
super.backgroundColors,
|
|
||||||
super.body,
|
|
||||||
super.borderColors,
|
|
||||||
super.secondaryBackgroundColor,
|
|
||||||
super.shadowColor,
|
|
||||||
super.subtitle,
|
|
||||||
super.title,
|
|
||||||
});
|
|
||||||
|
|
||||||
factory CardTheme.light() => CardTheme(
|
|
||||||
backgroundColors: const MultiColor.single(Color(0xFFF6F6F6)),
|
|
||||||
secondaryBackgroundColor: Colors.white,
|
|
||||||
borderColors: const MultiColor([
|
|
||||||
Color(0xFFDDE0E3),
|
|
||||||
Color(0xFFCACCD4),
|
|
||||||
]),
|
|
||||||
title: GoogleFonts.montserrat(
|
|
||||||
fontSize: 24,
|
|
||||||
fontWeight: FontWeight.w500,
|
|
||||||
color: const Color(0xFF24262A),
|
|
||||||
),
|
|
||||||
subtitle: GoogleFonts.montserrat(
|
|
||||||
fontSize: 15,
|
|
||||||
fontWeight: FontWeight.w300,
|
|
||||||
color: const Color(0xFF24262A),
|
|
||||||
),
|
|
||||||
body: GoogleFonts.montserrat(
|
|
||||||
fontSize: 12,
|
|
||||||
fontWeight: FontWeight.w300,
|
|
||||||
height: 1.7,
|
|
||||||
color: const Color(0xFF24262A),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
factory CardTheme.dark() => CardTheme(
|
|
||||||
backgroundColors:
|
|
||||||
MultiColor.single(const Color(0xFFFFFFFF).withOpacity(0.04)),
|
|
||||||
secondaryBackgroundColor: const Color(0xFFFFFFFF).withOpacity(0.04),
|
|
||||||
borderColors: const MultiColor([
|
|
||||||
Color(0xFF60656A),
|
|
||||||
Color(0xFF383C40),
|
|
||||||
]),
|
|
||||||
title: GoogleFonts.montserrat(
|
|
||||||
fontSize: 24,
|
|
||||||
fontWeight: FontWeight.w500,
|
|
||||||
color: const Color(0xFFFFFFFF),
|
|
||||||
),
|
|
||||||
subtitle: GoogleFonts.montserrat(
|
|
||||||
fontSize: 15,
|
|
||||||
fontWeight: FontWeight.w300,
|
|
||||||
color: const Color(0xFFFFFFFF),
|
|
||||||
),
|
|
||||||
body: GoogleFonts.montserrat(
|
|
||||||
fontSize: 12,
|
|
||||||
fontWeight: FontWeight.w300,
|
|
||||||
height: 1.7,
|
|
||||||
color: const Color(0xFFFFFFFF),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
@override
|
|
||||||
ThemeExtension<CardThemeExtension> copyWith({
|
|
||||||
MultiColor? backgroundColors,
|
|
||||||
Color? secondaryBackgroundColor,
|
|
||||||
MultiColor? borderColors,
|
|
||||||
BoxShadow? shadowColor,
|
|
||||||
TextStyle? body,
|
|
||||||
TextStyle? title,
|
|
||||||
TextStyle? subtitle,
|
|
||||||
}) =>
|
|
||||||
CardTheme(
|
|
||||||
backgroundColors: backgroundColors ?? this.backgroundColors,
|
|
||||||
secondaryBackgroundColor:
|
|
||||||
secondaryBackgroundColor ?? this.secondaryBackgroundColor,
|
|
||||||
borderColors: borderColors ?? this.borderColors,
|
|
||||||
shadowColor: shadowColor ?? this.shadowColor,
|
|
||||||
body: body ?? this.body,
|
|
||||||
title: title ?? this.title,
|
|
||||||
subtitle: subtitle ?? this.subtitle,
|
|
||||||
);
|
|
||||||
|
|
||||||
@override
|
|
||||||
ThemeExtension<CardThemeExtension> lerp(
|
|
||||||
covariant ThemeExtension<CardThemeExtension>? other,
|
|
||||||
double t,
|
|
||||||
) {
|
|
||||||
if (other is! CardTheme) {
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
return CardTheme(
|
|
||||||
backgroundColors: other.backgroundColors,
|
|
||||||
secondaryBackgroundColor: Color.lerp(
|
|
||||||
secondaryBackgroundColor,
|
|
||||||
other.secondaryBackgroundColor,
|
|
||||||
t,
|
|
||||||
),
|
|
||||||
borderColors: other.borderColors,
|
|
||||||
shadowColor: BoxShadow.lerp(shadowColor, other.shadowColor, t),
|
|
||||||
body: TextStyle.lerp(body, other.body, t),
|
|
||||||
title: TextStyle.lerp(title, other.title, t),
|
|
||||||
subtitle: TextStyle.lerp(subtitle, other.subtitle, t),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,120 +0,0 @@
|
|||||||
// Copyright (C) 2023 WYATT GROUP
|
|
||||||
// Please see the AUTHORS file for details.
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:google_fonts/google_fonts.dart';
|
|
||||||
import 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
|
||||||
import 'package:wyatt_ui_kit/wyatt_ui_kit.dart';
|
|
||||||
import 'package:wyatt_ui_kit_example/theme/constants.dart';
|
|
||||||
|
|
||||||
final Map<String, TextStyle> _styles = {
|
|
||||||
'gradient-blue': GradientTextStyle.from(
|
|
||||||
GoogleFonts.montserrat(
|
|
||||||
fontSize: 20,
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
color: Constants.blue1,
|
|
||||||
height: 1.8,
|
|
||||||
),
|
|
||||||
const MultiColor(Constants.blueGradient),
|
|
||||||
),
|
|
||||||
'gradient-red': GradientTextStyle.from(
|
|
||||||
GoogleFonts.montserrat(
|
|
||||||
fontSize: 20,
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
color: Constants.red1,
|
|
||||||
height: 1.8,
|
|
||||||
),
|
|
||||||
const MultiColor(Constants.redGradient),
|
|
||||||
),
|
|
||||||
'gradient-green': GradientTextStyle.from(
|
|
||||||
GoogleFonts.montserrat(
|
|
||||||
fontSize: 20,
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
color: Constants.green1,
|
|
||||||
height: 1.8,
|
|
||||||
),
|
|
||||||
const MultiColor(Constants.greenGradient),
|
|
||||||
),
|
|
||||||
'blue': GoogleFonts.montserrat(
|
|
||||||
fontSize: 20,
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
color: Constants.blue1,
|
|
||||||
height: 1.8,
|
|
||||||
),
|
|
||||||
'red': GoogleFonts.montserrat(
|
|
||||||
fontSize: 20,
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
color: Constants.red1,
|
|
||||||
height: 1.8,
|
|
||||||
),
|
|
||||||
'green': GoogleFonts.montserrat(
|
|
||||||
fontSize: 20,
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
color: Constants.green1,
|
|
||||||
height: 1.8,
|
|
||||||
),
|
|
||||||
};
|
|
||||||
|
|
||||||
class RichTextBuilderTheme extends RichTextBuilderThemeExtension {
|
|
||||||
const RichTextBuilderTheme({
|
|
||||||
super.defaultStyle,
|
|
||||||
super.styles,
|
|
||||||
});
|
|
||||||
|
|
||||||
factory RichTextBuilderTheme.light() => RichTextBuilderTheme(
|
|
||||||
defaultStyle: GoogleFonts.montserrat(
|
|
||||||
fontSize: 18,
|
|
||||||
fontWeight: FontWeight.w500,
|
|
||||||
color: Constants.grey3,
|
|
||||||
height: 1.8,
|
|
||||||
),
|
|
||||||
styles: _styles,
|
|
||||||
);
|
|
||||||
|
|
||||||
factory RichTextBuilderTheme.dark() => RichTextBuilderTheme(
|
|
||||||
defaultStyle: GoogleFonts.montserrat(
|
|
||||||
fontSize: 18,
|
|
||||||
fontWeight: FontWeight.w500,
|
|
||||||
color: Constants.white,
|
|
||||||
height: 1.8,
|
|
||||||
),
|
|
||||||
styles: _styles,
|
|
||||||
);
|
|
||||||
|
|
||||||
@override
|
|
||||||
ThemeExtension<RichTextBuilderThemeExtension> copyWith({
|
|
||||||
TextStyle? defaultStyle,
|
|
||||||
Map<String, TextStyle>? styles,
|
|
||||||
}) =>
|
|
||||||
RichTextBuilderTheme(
|
|
||||||
defaultStyle: defaultStyle ?? this.defaultStyle,
|
|
||||||
styles: styles ?? this.styles,
|
|
||||||
);
|
|
||||||
|
|
||||||
@override
|
|
||||||
ThemeExtension<RichTextBuilderThemeExtension> lerp(
|
|
||||||
covariant ThemeExtension<RichTextBuilderThemeExtension>? other,
|
|
||||||
double t,
|
|
||||||
) {
|
|
||||||
if (other is! RichTextBuilderTheme) {
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
return RichTextBuilderTheme(
|
|
||||||
defaultStyle: TextStyle.lerp(defaultStyle, other.defaultStyle, t),
|
|
||||||
styles: styles,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
@ -15,15 +15,14 @@
|
|||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import 'package:adaptive_theme/adaptive_theme.dart';
|
import 'package:adaptive_theme/adaptive_theme.dart';
|
||||||
import 'package:flutter/material.dart' hide CardTheme;
|
import 'package:flutter/material.dart';
|
||||||
import 'package:google_fonts/google_fonts.dart';
|
import 'package:google_fonts/google_fonts.dart';
|
||||||
import 'package:wyatt_ui_kit_example/theme/card_theme.dart';
|
|
||||||
import 'package:wyatt_ui_kit_example/theme/file_selection_button_theme.dart';
|
import 'package:wyatt_ui_kit_example/theme/file_selection_button_theme.dart';
|
||||||
import 'package:wyatt_ui_kit_example/theme/flat_button_theme.dart';
|
import 'package:wyatt_ui_kit_example/theme/flat_button_theme.dart';
|
||||||
import 'package:wyatt_ui_kit_example/theme/loader_theme.dart';
|
import 'package:wyatt_ui_kit_example/theme/loader_theme.dart';
|
||||||
import 'package:wyatt_ui_kit_example/theme/rich_text_builder_theme.dart';
|
|
||||||
import 'package:wyatt_ui_kit_example/theme/simple_icon_button_theme.dart';
|
import 'package:wyatt_ui_kit_example/theme/simple_icon_button_theme.dart';
|
||||||
import 'package:wyatt_ui_kit_example/theme/symbol_button_theme.dart';
|
import 'package:wyatt_ui_kit_example/theme/symbol_button_theme.dart';
|
||||||
|
import 'package:wyatt_ui_kit_example/theme_extension.dart';
|
||||||
|
|
||||||
/// Easely switch between Material and Studio themes.
|
/// Easely switch between Material and Studio themes.
|
||||||
abstract class Themes {
|
abstract class Themes {
|
||||||
@ -79,8 +78,32 @@ abstract class Themes {
|
|||||||
),
|
),
|
||||||
scaffoldBackgroundColor: Colors.white,
|
scaffoldBackgroundColor: Colors.white,
|
||||||
extensions: <ThemeExtension<dynamic>>[
|
extensions: <ThemeExtension<dynamic>>[
|
||||||
// Cards
|
CustomCardColorExtension(
|
||||||
CardTheme.light(),
|
backgroundColors: const [
|
||||||
|
Color(0xFFF6F6F6),
|
||||||
|
],
|
||||||
|
secondaryBackgroundColors: Colors.white,
|
||||||
|
borderColor: const [
|
||||||
|
Color(0xFFDDE0E3),
|
||||||
|
Color(0xFFCACCD4),
|
||||||
|
],
|
||||||
|
title: GoogleFonts.montserrat(
|
||||||
|
fontSize: 24,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
color: const Color(0xFF24262A),
|
||||||
|
),
|
||||||
|
subtitle: GoogleFonts.montserrat(
|
||||||
|
fontSize: 15,
|
||||||
|
fontWeight: FontWeight.w300,
|
||||||
|
color: const Color(0xFF24262A),
|
||||||
|
),
|
||||||
|
body: GoogleFonts.montserrat(
|
||||||
|
fontSize: 12,
|
||||||
|
fontWeight: FontWeight.w300,
|
||||||
|
height: 1.7,
|
||||||
|
color: const Color(0xFF24262A),
|
||||||
|
),
|
||||||
|
),
|
||||||
// Buttons
|
// Buttons
|
||||||
FlatButtonTheme.light(),
|
FlatButtonTheme.light(),
|
||||||
SymbolButtonTheme.light(),
|
SymbolButtonTheme.light(),
|
||||||
@ -88,8 +111,6 @@ abstract class Themes {
|
|||||||
FileSelectionButtonTheme.light(),
|
FileSelectionButtonTheme.light(),
|
||||||
// Loader
|
// Loader
|
||||||
LoaderTheme.light(),
|
LoaderTheme.light(),
|
||||||
// Rich Text
|
|
||||||
RichTextBuilderTheme.light(),
|
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -105,13 +126,35 @@ abstract class Themes {
|
|||||||
color: const Color(0xFFFFFFFF),
|
color: const Color(0xFFFFFFFF),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
drawerTheme: const DrawerThemeData(
|
|
||||||
backgroundColor: Color(0xFF383C40),
|
|
||||||
),
|
|
||||||
scaffoldBackgroundColor: const Color(0xFF383C40),
|
scaffoldBackgroundColor: const Color(0xFF383C40),
|
||||||
extensions: <ThemeExtension<dynamic>>[
|
extensions: <ThemeExtension<dynamic>>[
|
||||||
// Cards
|
CustomCardColorExtension(
|
||||||
CardTheme.dark(),
|
secondaryBackgroundColors:
|
||||||
|
const Color(0xFFFFFFFF).withOpacity(0.04),
|
||||||
|
backgroundColors: [
|
||||||
|
const Color(0xFFFFFFFF).withOpacity(0.04),
|
||||||
|
],
|
||||||
|
borderColor: const [
|
||||||
|
Color(0xFF60656A),
|
||||||
|
Color(0xFF383C40),
|
||||||
|
],
|
||||||
|
title: GoogleFonts.montserrat(
|
||||||
|
fontSize: 24,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
color: const Color(0xFFFFFFFF),
|
||||||
|
),
|
||||||
|
subtitle: GoogleFonts.montserrat(
|
||||||
|
fontSize: 15,
|
||||||
|
fontWeight: FontWeight.w300,
|
||||||
|
color: const Color(0xFFFFFFFF),
|
||||||
|
),
|
||||||
|
body: GoogleFonts.montserrat(
|
||||||
|
fontSize: 12,
|
||||||
|
fontWeight: FontWeight.w300,
|
||||||
|
height: 1.7,
|
||||||
|
color: const Color(0xFFFFFFFF),
|
||||||
|
),
|
||||||
|
),
|
||||||
// Buttons
|
// Buttons
|
||||||
FlatButtonTheme.dark(),
|
FlatButtonTheme.dark(),
|
||||||
SymbolButtonTheme.dark(),
|
SymbolButtonTheme.dark(),
|
||||||
@ -119,8 +162,6 @@ abstract class Themes {
|
|||||||
FileSelectionButtonTheme.dark(),
|
FileSelectionButtonTheme.dark(),
|
||||||
// Loader
|
// Loader
|
||||||
LoaderTheme.dark(),
|
LoaderTheme.dark(),
|
||||||
// Rich Text
|
|
||||||
RichTextBuilderTheme.dark(),
|
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
54
packages/wyatt_ui_kit/example/lib/theme_extension.dart
Normal file
54
packages/wyatt_ui_kit/example/lib/theme_extension.dart
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:wyatt_ui_kit/wyatt_ui_kit.dart' as ui_kit;
|
||||||
|
|
||||||
|
class CustomCardColorExtension extends ui_kit.CardThemeExtension {
|
||||||
|
const CustomCardColorExtension({
|
||||||
|
super.backgroundColors,
|
||||||
|
super.secondaryBackgroundColors,
|
||||||
|
super.borderColor,
|
||||||
|
super.shadowColor,
|
||||||
|
super.body,
|
||||||
|
super.title,
|
||||||
|
super.subtitle,
|
||||||
|
});
|
||||||
|
|
||||||
|
@override
|
||||||
|
CustomCardColorExtension copyWith({
|
||||||
|
List<Color>? backgroundColors,
|
||||||
|
Color? secondaryBackgroundColors,
|
||||||
|
List<Color>? borderColor,
|
||||||
|
BoxShadow? shadowColor,
|
||||||
|
TextStyle? body,
|
||||||
|
TextStyle? title,
|
||||||
|
TextStyle? subtitle,
|
||||||
|
}) =>
|
||||||
|
CustomCardColorExtension(
|
||||||
|
backgroundColors: backgroundColors ?? this.backgroundColors,
|
||||||
|
secondaryBackgroundColors:
|
||||||
|
secondaryBackgroundColors ?? this.secondaryBackgroundColors,
|
||||||
|
borderColor: borderColor ?? this.borderColor,
|
||||||
|
body: body ?? this.body,
|
||||||
|
title: title ?? this.title,
|
||||||
|
subtitle: subtitle ?? this.subtitle,
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
ThemeExtension<ui_kit.CardThemeExtension> lerp(
|
||||||
|
covariant ThemeExtension<ui_kit.CardThemeExtension>? other,
|
||||||
|
double t,
|
||||||
|
) {
|
||||||
|
if (other is! CustomCardColorExtension) {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
return CustomCardColorExtension(
|
||||||
|
secondaryBackgroundColors: Color.lerp(
|
||||||
|
secondaryBackgroundColors,
|
||||||
|
other.secondaryBackgroundColors,
|
||||||
|
t,
|
||||||
|
),
|
||||||
|
body: TextStyle.lerp(body, other.body, t),
|
||||||
|
title: TextStyle.lerp(title, other.title, t),
|
||||||
|
subtitle: TextStyle.lerp(subtitle, other.subtitle, t),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -24,6 +24,7 @@ import 'package:wyatt_ui_kit/src/components/buttons/cubit/invalid_button_cubit.d
|
|||||||
import 'package:wyatt_ui_kit/src/components/buttons/file_selection_button/dotter_border_child.dart';
|
import 'package:wyatt_ui_kit/src/components/buttons/file_selection_button/dotter_border_child.dart';
|
||||||
import 'package:wyatt_ui_kit/src/components/buttons/file_selection_button/file_selection_button_theme_resolver.dart';
|
import 'package:wyatt_ui_kit/src/components/buttons/file_selection_button/file_selection_button_theme_resolver.dart';
|
||||||
import 'package:wyatt_ui_kit/src/components/gradients/gradient_text.dart';
|
import 'package:wyatt_ui_kit/src/components/gradients/gradient_text.dart';
|
||||||
|
import 'package:wyatt_ui_kit/src/core/helpers/linear_gradient_helper.dart';
|
||||||
|
|
||||||
class FileSelectionButtonScreen
|
class FileSelectionButtonScreen
|
||||||
extends CubitScreen<InvalidButtonCubit, ButtonState> {
|
extends CubitScreen<InvalidButtonCubit, ButtonState> {
|
||||||
@ -219,7 +220,13 @@ class FileSelectionButtonScreen
|
|||||||
title!.text,
|
title!.text,
|
||||||
style: title!.style ?? style.title,
|
style: title!.style ?? style.title,
|
||||||
).toGradient(
|
).toGradient(
|
||||||
gradientColors: style.foregroundColors,
|
LinearGradientHelper.fromNullableColors(
|
||||||
|
title?.gradient ??
|
||||||
|
((style.foregroundColors?.isGradient ??
|
||||||
|
false)
|
||||||
|
? style.foregroundColors?.colors
|
||||||
|
: null),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|
||||||
@ -240,7 +247,13 @@ class FileSelectionButtonScreen
|
|||||||
subTitle!.text,
|
subTitle!.text,
|
||||||
style: subTitle!.style ?? style.subTitle,
|
style: subTitle!.style ?? style.subTitle,
|
||||||
).toGradient(
|
).toGradient(
|
||||||
gradientColors: style.foregroundColors,
|
LinearGradientHelper.fromNullableColors(
|
||||||
|
subTitle?.gradient ??
|
||||||
|
((style.foregroundColors?.isGradient ??
|
||||||
|
false)
|
||||||
|
? style.foregroundColors?.colors
|
||||||
|
: null),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
@ -23,6 +23,7 @@ import 'package:wyatt_ui_kit/src/components/buttons/cubit/button_cubit.dart';
|
|||||||
import 'package:wyatt_ui_kit/src/components/buttons/flat_button/flat_button_theme_resolver.dart';
|
import 'package:wyatt_ui_kit/src/components/buttons/flat_button/flat_button_theme_resolver.dart';
|
||||||
import 'package:wyatt_ui_kit/src/components/gradients/gradient_box_border.dart';
|
import 'package:wyatt_ui_kit/src/components/gradients/gradient_box_border.dart';
|
||||||
import 'package:wyatt_ui_kit/src/components/gradients/gradient_text.dart';
|
import 'package:wyatt_ui_kit/src/components/gradients/gradient_text.dart';
|
||||||
|
import 'package:wyatt_ui_kit/src/core/helpers/linear_gradient_helper.dart';
|
||||||
|
|
||||||
class FlatButtonScreen extends CubitScreen<ButtonCubit, ButtonState> {
|
class FlatButtonScreen extends CubitScreen<ButtonCubit, ButtonState> {
|
||||||
const FlatButtonScreen({
|
const FlatButtonScreen({
|
||||||
@ -203,7 +204,12 @@ class FlatButtonScreen extends CubitScreen<ButtonCubit, ButtonState> {
|
|||||||
label!.text,
|
label!.text,
|
||||||
style: label!.style ?? style.label,
|
style: label!.style ?? style.label,
|
||||||
).toGradient(
|
).toGradient(
|
||||||
gradientColors: style.foregroundColors,
|
LinearGradientHelper.fromNullableColors(
|
||||||
|
label?.gradient ??
|
||||||
|
((style.foregroundColors?.isGradient ?? false)
|
||||||
|
? style.foregroundColors?.colors
|
||||||
|
: null),
|
||||||
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
Gap(style.padding?.vertical ?? 10),
|
Gap(style.padding?.vertical ?? 10),
|
||||||
|
@ -24,6 +24,7 @@ import 'package:wyatt_ui_kit/src/components/buttons/cubit/selectable_button_cubi
|
|||||||
import 'package:wyatt_ui_kit/src/components/buttons/symbol_button/symbol_button_theme_resolver.dart';
|
import 'package:wyatt_ui_kit/src/components/buttons/symbol_button/symbol_button_theme_resolver.dart';
|
||||||
import 'package:wyatt_ui_kit/src/components/gradients/gradient_box_border.dart';
|
import 'package:wyatt_ui_kit/src/components/gradients/gradient_box_border.dart';
|
||||||
import 'package:wyatt_ui_kit/src/components/gradients/gradient_text.dart';
|
import 'package:wyatt_ui_kit/src/components/gradients/gradient_text.dart';
|
||||||
|
import 'package:wyatt_ui_kit/src/core/helpers/linear_gradient_helper.dart';
|
||||||
|
|
||||||
class SymbolButtonScreen
|
class SymbolButtonScreen
|
||||||
extends CubitScreen<SelectableButtonCubit, ButtonState> {
|
extends CubitScreen<SelectableButtonCubit, ButtonState> {
|
||||||
@ -227,7 +228,12 @@ class SymbolButtonScreen
|
|||||||
label!.text,
|
label!.text,
|
||||||
style: label!.style ?? style.label,
|
style: label!.style ?? style.label,
|
||||||
).toGradient(
|
).toGradient(
|
||||||
gradientColors: style.foregroundColors,
|
LinearGradientHelper.fromNullableColors(
|
||||||
|
label?.gradient ??
|
||||||
|
((style.foregroundColors?.isGradient ?? false)
|
||||||
|
? style.foregroundColors?.colors
|
||||||
|
: null),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
@ -80,7 +80,7 @@ class InformationCard extends InformationCardComponent
|
|||||||
body!.text,
|
body!.text,
|
||||||
textType: TextType.body,
|
textType: TextType.body,
|
||||||
style: body!.style,
|
style: body!.style,
|
||||||
gradientColors: body!.gradientColors,
|
gradient: body!.gradient,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
@ -44,7 +44,7 @@ class InformationCardTitles extends StatelessWidget {
|
|||||||
title!.text,
|
title!.text,
|
||||||
textType: TextType.title,
|
textType: TextType.title,
|
||||||
style: title!.style,
|
style: title!.style,
|
||||||
gradientColors: title!.gradientColors,
|
gradient: title!.gradient,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
if (subtitle != null) ...[
|
if (subtitle != null) ...[
|
||||||
@ -53,7 +53,7 @@ class InformationCardTitles extends StatelessWidget {
|
|||||||
subtitle!.text,
|
subtitle!.text,
|
||||||
textType: TextType.subtitle,
|
textType: TextType.subtitle,
|
||||||
style: subtitle!.style,
|
style: subtitle!.style,
|
||||||
gradientColors: subtitle!.gradientColors,
|
gradient: subtitle!.gradient,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
@ -73,7 +73,7 @@ class PortfolioCard extends PortfolioCardComponent with $PortfolioCardCWMixin {
|
|||||||
description!.text,
|
description!.text,
|
||||||
textType: TextType.body,
|
textType: TextType.body,
|
||||||
style: description!.style,
|
style: description!.style,
|
||||||
gradientColors: description!.gradientColors,
|
gradient: description!.gradient,
|
||||||
),
|
),
|
||||||
const Gap(20),
|
const Gap(20),
|
||||||
PortfolioCardHeader(
|
PortfolioCardHeader(
|
||||||
@ -108,7 +108,7 @@ class PortfolioCard extends PortfolioCardComponent with $PortfolioCardCWMixin {
|
|||||||
description!.text,
|
description!.text,
|
||||||
textType: TextType.body,
|
textType: TextType.body,
|
||||||
style: description!.style,
|
style: description!.style,
|
||||||
gradientColors: description!.gradientColors,
|
gradient: description!.gradient,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
if (ctas != null) ...[const Gap(20), ...ctas!],
|
if (ctas != null) ...[const Gap(20), ...ctas!],
|
||||||
|
@ -71,7 +71,7 @@ class PortfolioCardHeader extends StatelessWidget {
|
|||||||
color: secondaryBackgroundColors ??
|
color: secondaryBackgroundColors ??
|
||||||
Theme.of(context)
|
Theme.of(context)
|
||||||
.extension<CardThemeExtension>()
|
.extension<CardThemeExtension>()
|
||||||
?.secondaryBackgroundColor,
|
?.secondaryBackgroundColors,
|
||||||
borderRadius: BorderRadius.circular(8),
|
borderRadius: BorderRadius.circular(8),
|
||||||
),
|
),
|
||||||
child: Text(
|
child: Text(
|
||||||
|
@ -20,7 +20,8 @@ import 'package:wyatt_component_copy_with_extension/component_copy_with_extensio
|
|||||||
import 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
import 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
||||||
import 'package:wyatt_ui_kit/src/components/cards/widgets/card_text.dart';
|
import 'package:wyatt_ui_kit/src/components/cards/widgets/card_text.dart';
|
||||||
import 'package:wyatt_ui_kit/src/components/cards/widgets/card_wrapper.dart';
|
import 'package:wyatt_ui_kit/src/components/cards/widgets/card_wrapper.dart';
|
||||||
import 'package:wyatt_ui_kit/wyatt_ui_kit.dart';
|
import 'package:wyatt_ui_kit/src/components/gradients/gradient_text.dart';
|
||||||
|
import 'package:wyatt_ui_kit/src/core/extensions/theme_extensions.dart';
|
||||||
|
|
||||||
part 'quote_card.g.dart';
|
part 'quote_card.g.dart';
|
||||||
|
|
||||||
@ -62,11 +63,9 @@ class QuoteCard extends QuoteCardComponent with $QuoteCardCWMixin {
|
|||||||
alignment: Alignment.topLeft,
|
alignment: Alignment.topLeft,
|
||||||
child: GradientText(
|
child: GradientText(
|
||||||
'“',
|
'“',
|
||||||
style: GradientTextStyle.from(
|
gradient: gradient,
|
||||||
context.textTheme.titleLarge
|
style: context.textTheme.titleLarge
|
||||||
?.copyWith(fontWeight: FontWeight.bold),
|
?.copyWith(fontWeight: FontWeight.bold),
|
||||||
MultiColor(gradient?.colors),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (quote != null) ...[
|
if (quote != null) ...[
|
||||||
@ -74,7 +73,7 @@ class QuoteCard extends QuoteCardComponent with $QuoteCardCWMixin {
|
|||||||
quote!.text,
|
quote!.text,
|
||||||
textType: TextType.body,
|
textType: TextType.body,
|
||||||
style: quote!.style,
|
style: quote!.style,
|
||||||
gradientColors: quote!.gradientColors,
|
gradient: quote!.gradient,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
const Gap(15),
|
const Gap(15),
|
||||||
@ -83,11 +82,9 @@ class QuoteCard extends QuoteCardComponent with $QuoteCardCWMixin {
|
|||||||
alignment: Alignment.bottomRight,
|
alignment: Alignment.bottomRight,
|
||||||
child: GradientText(
|
child: GradientText(
|
||||||
'”',
|
'”',
|
||||||
style: GradientTextStyle.from(
|
gradient: gradient,
|
||||||
context.textTheme.titleLarge
|
style: context.textTheme.titleLarge
|
||||||
?.copyWith(fontWeight: FontWeight.bold),
|
?.copyWith(fontWeight: FontWeight.bold),
|
||||||
MultiColor(gradient?.colors),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Row(
|
Row(
|
||||||
@ -105,7 +102,7 @@ class QuoteCard extends QuoteCardComponent with $QuoteCardCWMixin {
|
|||||||
name!.text,
|
name!.text,
|
||||||
textType: TextType.body,
|
textType: TextType.body,
|
||||||
style: name!.style,
|
style: name!.style,
|
||||||
gradientColors: name!.gradientColors,
|
gradient: name!.gradient,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
if (subtitle != null) ...[
|
if (subtitle != null) ...[
|
||||||
@ -113,7 +110,7 @@ class QuoteCard extends QuoteCardComponent with $QuoteCardCWMixin {
|
|||||||
subtitle!.text,
|
subtitle!.text,
|
||||||
textType: TextType.subtitle,
|
textType: TextType.subtitle,
|
||||||
style: subtitle!.style,
|
style: subtitle!.style,
|
||||||
gradientColors: subtitle!.gradientColors,
|
gradient: subtitle!.gradient,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
@ -70,7 +70,7 @@ class SkillCard extends SkillCardComponent with $SkillCardCWMixin {
|
|||||||
description!.text,
|
description!.text,
|
||||||
textType: TextType.body,
|
textType: TextType.body,
|
||||||
style: description!.style,
|
style: description!.style,
|
||||||
gradientColors: description!.gradientColors,
|
gradient: description!.gradient,
|
||||||
),
|
),
|
||||||
const Gap(25),
|
const Gap(25),
|
||||||
],
|
],
|
||||||
|
@ -46,7 +46,7 @@ class SkillCardHeader extends StatelessWidget {
|
|||||||
color: secondaryBackgroundColors ??
|
color: secondaryBackgroundColors ??
|
||||||
Theme.of(context)
|
Theme.of(context)
|
||||||
.extension<CardThemeExtension>()
|
.extension<CardThemeExtension>()
|
||||||
?.secondaryBackgroundColor,
|
?.secondaryBackgroundColors,
|
||||||
),
|
),
|
||||||
child: gradient != null
|
child: gradient != null
|
||||||
? GradientIcon(
|
? GradientIcon(
|
||||||
@ -67,7 +67,7 @@ class SkillCardHeader extends StatelessWidget {
|
|||||||
title!.text,
|
title!.text,
|
||||||
textType: TextType.title,
|
textType: TextType.title,
|
||||||
style: title!.style,
|
style: title!.style,
|
||||||
gradientColors: title!.gradientColors,
|
gradient: title!.gradient,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
@ -50,7 +50,7 @@ class SkillCardSkills extends StatelessWidget {
|
|||||||
e.text,
|
e.text,
|
||||||
textType: TextType.body,
|
textType: TextType.body,
|
||||||
style: e.style,
|
style: e.style,
|
||||||
gradientColors: e.gradientColors,
|
gradient: e.gradient,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
import 'package:wyatt_ui_kit/src/components/gradients/gradient_text.dart';
|
||||||
import 'package:wyatt_ui_kit/wyatt_ui_kit.dart';
|
import 'package:wyatt_ui_kit/wyatt_ui_kit.dart';
|
||||||
|
|
||||||
enum TextType {
|
enum TextType {
|
||||||
@ -28,13 +28,13 @@ class CardText extends StatelessWidget {
|
|||||||
const CardText(
|
const CardText(
|
||||||
this.data, {
|
this.data, {
|
||||||
required this.textType,
|
required this.textType,
|
||||||
|
this.gradient,
|
||||||
this.style,
|
this.style,
|
||||||
this.gradientColors,
|
|
||||||
super.key,
|
super.key,
|
||||||
});
|
});
|
||||||
final TextType textType;
|
final TextType textType;
|
||||||
final TextStyle? style;
|
final TextStyle? style;
|
||||||
final MultiColor? gradientColors;
|
final List<Color>? gradient;
|
||||||
final String data;
|
final String data;
|
||||||
|
|
||||||
TextStyle? _getStyle(BuildContext context) {
|
TextStyle? _getStyle(BuildContext context) {
|
||||||
@ -58,5 +58,9 @@ class CardText extends StatelessWidget {
|
|||||||
Widget build(BuildContext context) => Text(
|
Widget build(BuildContext context) => Text(
|
||||||
data,
|
data,
|
||||||
style: _getStyle(context),
|
style: _getStyle(context),
|
||||||
).toGradient(gradientColors: gradientColors);
|
).toGradient(
|
||||||
|
LinearGradientHelper.fromNullableColors(
|
||||||
|
gradient,
|
||||||
|
),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
@ -110,9 +110,8 @@ class _CardWrapperState extends State<CardWrapper> {
|
|||||||
|
|
||||||
if (extensionCardColor != null &&
|
if (extensionCardColor != null &&
|
||||||
extensionCardColor.backgroundColors != null &&
|
extensionCardColor.backgroundColors != null &&
|
||||||
extensionCardColor.backgroundColors!.isGradient) {
|
extensionCardColor.backgroundColors!.length >= 2) {
|
||||||
return LinearGradient(
|
return LinearGradient(colors: extensionCardColor.backgroundColors!);
|
||||||
colors: extensionCardColor.backgroundColors!.colors,);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
@ -127,8 +126,9 @@ class _CardWrapperState extends State<CardWrapper> {
|
|||||||
Theme.of(context).extension<CardThemeExtension>();
|
Theme.of(context).extension<CardThemeExtension>();
|
||||||
|
|
||||||
if (extensionCardColor != null &&
|
if (extensionCardColor != null &&
|
||||||
extensionCardColor.backgroundColors != null) {
|
extensionCardColor.backgroundColors != null &&
|
||||||
return extensionCardColor.backgroundColors!.color;
|
extensionCardColor.backgroundColors!.length == 1) {
|
||||||
|
return extensionCardColor.backgroundColors!.first;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return Theme.of(context).cardColor;
|
return Theme.of(context).cardColor;
|
||||||
@ -151,16 +151,16 @@ class _CardWrapperState extends State<CardWrapper> {
|
|||||||
final extensionCardColor =
|
final extensionCardColor =
|
||||||
Theme.of(context).extension<CardThemeExtension>();
|
Theme.of(context).extension<CardThemeExtension>();
|
||||||
if (extensionCardColor != null &&
|
if (extensionCardColor != null &&
|
||||||
extensionCardColor.borderColors != null) {
|
extensionCardColor.borderColor != null) {
|
||||||
if (extensionCardColor.borderColors!.isGradient) {
|
if (extensionCardColor.borderColor!.length >= 2) {
|
||||||
return GradientBoxBorder(
|
return GradientBoxBorder(
|
||||||
gradient: LinearGradient(
|
gradient: LinearGradient(
|
||||||
colors: extensionCardColor.borderColors!.colors,
|
colors: extensionCardColor.borderColor!,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
} else if (extensionCardColor.backgroundColors!.colors.isNotEmpty) {
|
} else if (extensionCardColor.backgroundColors!.isNotEmpty) {
|
||||||
return Border.all(
|
return Border.all(
|
||||||
color: extensionCardColor.backgroundColors!.color,
|
color: extensionCardColor.backgroundColors!.first,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,6 +16,4 @@
|
|||||||
|
|
||||||
export './buttons/buttons.dart';
|
export './buttons/buttons.dart';
|
||||||
export './cards/cards.dart';
|
export './cards/cards.dart';
|
||||||
export './gradients/gradients.dart';
|
|
||||||
export './loader/loader.dart';
|
export './loader/loader.dart';
|
||||||
export './rich_text_builder/rich_text_builder.dart';
|
|
||||||
|
@ -17,29 +17,16 @@
|
|||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import 'package:flutter/widgets.dart';
|
import 'package:flutter/widgets.dart';
|
||||||
import 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
|
||||||
import 'package:wyatt_ui_kit/wyatt_ui_kit.dart';
|
|
||||||
|
|
||||||
extension GradientTextExtension on Text {
|
extension GradientTextExtension on Text {
|
||||||
/// If this text contains a [GradientTextStyle] it simply transforms it in
|
GradientText toGradient(Gradient? gradient) =>
|
||||||
/// [GradientText], if not it needs a [MultiColor].
|
GradientText.from(this, gradient);
|
||||||
GradientText toGradient({MultiColor? gradientColors}) {
|
|
||||||
if (style is GradientTextStyle?) {
|
|
||||||
// Gradient
|
|
||||||
final gradientStyle = (style as GradientTextStyle?)?.gradientColors;
|
|
||||||
return GradientText.from(this, gradientStyle ?? gradientColors);
|
|
||||||
}
|
|
||||||
|
|
||||||
return GradientText.from(this, gradientColors);
|
|
||||||
}
|
|
||||||
|
|
||||||
GradientText toFlutterGradient(Gradient? gradient) =>
|
|
||||||
GradientText.from(this, MultiColor(gradient?.colors));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class GradientText extends Text {
|
class GradientText extends Text {
|
||||||
const GradientText(
|
const GradientText(
|
||||||
super.data, {
|
super.data, {
|
||||||
|
this.gradient,
|
||||||
super.style,
|
super.style,
|
||||||
super.strutStyle,
|
super.strutStyle,
|
||||||
super.textAlign,
|
super.textAlign,
|
||||||
@ -56,10 +43,10 @@ class GradientText extends Text {
|
|||||||
super.key,
|
super.key,
|
||||||
});
|
});
|
||||||
|
|
||||||
factory GradientText.from(Text text, MultiColor? gradientColors) =>
|
factory GradientText.from(Text text, Gradient? gradient) => GradientText(
|
||||||
GradientText(
|
|
||||||
text.data ?? '',
|
text.data ?? '',
|
||||||
style: GradientTextStyle.from(text.style, gradientColors),
|
style: text.style,
|
||||||
|
gradient: gradient,
|
||||||
strutStyle: text.strutStyle,
|
strutStyle: text.strutStyle,
|
||||||
textAlign: text.textAlign,
|
textAlign: text.textAlign,
|
||||||
textDirection: text.textDirection,
|
textDirection: text.textDirection,
|
||||||
@ -75,24 +62,20 @@ class GradientText extends Text {
|
|||||||
key: text.key,
|
key: text.key,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
final Gradient? gradient;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
if (style is GradientTextStyle?) {
|
|
||||||
// Gradient
|
|
||||||
final gradientStyle = (style as GradientTextStyle?)?.gradientColors;
|
|
||||||
final gradient = (gradientStyle?.isGradient ?? false)
|
|
||||||
? LinearGradientHelper.fromMultiColor(gradientStyle!)
|
|
||||||
: null;
|
|
||||||
if (gradient != null) {
|
if (gradient != null) {
|
||||||
return ShaderMask(
|
return ShaderMask(
|
||||||
blendMode: BlendMode.srcIn,
|
blendMode: BlendMode.srcIn,
|
||||||
shaderCallback: (bounds) => gradient.createShader(
|
shaderCallback: (bounds) => gradient!.createShader(
|
||||||
Rect.fromLTWH(0, 0, bounds.width, bounds.height),
|
Rect.fromLTWH(0, 0, bounds.width, bounds.height),
|
||||||
),
|
),
|
||||||
child: super.build(context),
|
child: super.build(context),
|
||||||
);
|
);
|
||||||
}
|
} else {
|
||||||
}
|
|
||||||
return super.build(context);
|
return super.build(context);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
@ -1,85 +0,0 @@
|
|||||||
// Copyright (C) 2023 WYATT GROUP
|
|
||||||
// Please see the AUTHORS file for details.
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
import 'package:flutter/widgets.dart';
|
|
||||||
import 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
|
||||||
|
|
||||||
class GradientTextStyle extends TextStyle {
|
|
||||||
const GradientTextStyle({
|
|
||||||
this.gradientColors,
|
|
||||||
super.inherit,
|
|
||||||
super.color,
|
|
||||||
super.backgroundColor,
|
|
||||||
super.fontSize,
|
|
||||||
super.fontWeight,
|
|
||||||
super.fontStyle,
|
|
||||||
super.letterSpacing,
|
|
||||||
super.wordSpacing,
|
|
||||||
super.textBaseline,
|
|
||||||
super.height,
|
|
||||||
super.leadingDistribution,
|
|
||||||
super.locale,
|
|
||||||
super.foreground,
|
|
||||||
super.background,
|
|
||||||
super.shadows,
|
|
||||||
super.fontFeatures,
|
|
||||||
super.fontVariations,
|
|
||||||
super.decoration,
|
|
||||||
super.decorationColor,
|
|
||||||
super.decorationStyle,
|
|
||||||
super.decorationThickness,
|
|
||||||
super.debugLabel,
|
|
||||||
super.fontFamily,
|
|
||||||
super.fontFamilyFallback,
|
|
||||||
super.package,
|
|
||||||
super.overflow,
|
|
||||||
});
|
|
||||||
|
|
||||||
factory GradientTextStyle.from(
|
|
||||||
TextStyle? textStyle,
|
|
||||||
MultiColor? gradientColors,
|
|
||||||
) =>
|
|
||||||
GradientTextStyle(
|
|
||||||
gradientColors: gradientColors,
|
|
||||||
inherit: textStyle?.inherit ?? true,
|
|
||||||
color: textStyle?.color,
|
|
||||||
backgroundColor: textStyle?.backgroundColor,
|
|
||||||
fontSize: textStyle?.fontSize,
|
|
||||||
fontWeight: textStyle?.fontWeight,
|
|
||||||
fontStyle: textStyle?.fontStyle,
|
|
||||||
letterSpacing: textStyle?.letterSpacing,
|
|
||||||
wordSpacing: textStyle?.wordSpacing,
|
|
||||||
textBaseline: textStyle?.textBaseline,
|
|
||||||
height: textStyle?.height,
|
|
||||||
leadingDistribution: textStyle?.leadingDistribution,
|
|
||||||
locale: textStyle?.locale,
|
|
||||||
foreground: textStyle?.foreground,
|
|
||||||
background: textStyle?.background,
|
|
||||||
shadows: textStyle?.shadows,
|
|
||||||
fontFeatures: textStyle?.fontFeatures,
|
|
||||||
fontVariations: textStyle?.fontVariations,
|
|
||||||
decoration: textStyle?.decoration,
|
|
||||||
decorationColor: textStyle?.decorationColor,
|
|
||||||
decorationStyle: textStyle?.decorationStyle,
|
|
||||||
decorationThickness: textStyle?.decorationThickness,
|
|
||||||
debugLabel: textStyle?.debugLabel,
|
|
||||||
fontFamily: textStyle?.fontFamily,
|
|
||||||
fontFamilyFallback: textStyle?.fontFamilyFallback,
|
|
||||||
overflow: textStyle?.overflow,
|
|
||||||
);
|
|
||||||
|
|
||||||
final MultiColor? gradientColors;
|
|
||||||
}
|
|
@ -1,20 +0,0 @@
|
|||||||
// Copyright (C) 2023 WYATT GROUP
|
|
||||||
// Please see the AUTHORS file for details.
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
export 'gradient_box_border.dart';
|
|
||||||
export 'gradient_icon.dart';
|
|
||||||
export 'gradient_text.dart';
|
|
||||||
export 'gradient_text_style.dart';
|
|
@ -1,108 +0,0 @@
|
|||||||
// Copyright (C) 2023 WYATT GROUP
|
|
||||||
// Please see the AUTHORS file for details.
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:wyatt_component_copy_with_extension/component_copy_with_extension.dart';
|
|
||||||
import 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
|
||||||
import 'package:wyatt_ui_kit/src/components/rich_text_builder/rich_text_builder_theme_resolver.dart';
|
|
||||||
import 'package:wyatt_ui_kit/wyatt_ui_kit.dart';
|
|
||||||
|
|
||||||
part 'rich_text_builder.g.dart';
|
|
||||||
|
|
||||||
@ComponentCopyWithExtension()
|
|
||||||
class RichTextBuilder extends RichTextBuilderComponent
|
|
||||||
with $RichTextBuilderCWMixin {
|
|
||||||
const RichTextBuilder({
|
|
||||||
super.text,
|
|
||||||
super.parser,
|
|
||||||
super.defaultStyle,
|
|
||||||
super.styles,
|
|
||||||
super.themeResolver,
|
|
||||||
super.key,
|
|
||||||
});
|
|
||||||
|
|
||||||
@override
|
|
||||||
RichTextBuilderThemeResolver? get themeResolver =>
|
|
||||||
super.themeResolver as RichTextBuilderThemeResolver?;
|
|
||||||
|
|
||||||
/// Negotiate the theme to get a complete style.
|
|
||||||
RichTextBuilderStyle _resolve(BuildContext context) {
|
|
||||||
final RichTextBuilderThemeResolver resolver = themeResolver ??
|
|
||||||
RichTextBuilderThemeResolver(
|
|
||||||
computeExtensionValueFn: (
|
|
||||||
context,
|
|
||||||
defaultValue,
|
|
||||||
themeExtension, {
|
|
||||||
extra,
|
|
||||||
}) =>
|
|
||||||
RichTextBuilderStyle(
|
|
||||||
defaultStyle: themeExtension.defaultStyle,
|
|
||||||
styles: themeExtension.styles,
|
|
||||||
),
|
|
||||||
customStyleFn: (context, {extra}) => RichTextBuilderStyle(
|
|
||||||
defaultStyle: defaultStyle,
|
|
||||||
styles: styles,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
return resolver.negotiate(context);
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
final style = _resolve(context);
|
|
||||||
final RegExp regex = RegExp(r'<(.*?)>(.*?)<\/\1>');
|
|
||||||
final root = RichTextNode.from(
|
|
||||||
text ?? '',
|
|
||||||
regex,
|
|
||||||
RichTextStyleParameter(
|
|
||||||
style.defaultStyle!,
|
|
||||||
style.styles ?? {},
|
|
||||||
null,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
final customParser = parser ??
|
|
||||||
RichTextParser(
|
|
||||||
nodeBuilder: (content, style) {
|
|
||||||
if (style is GradientTextStyle?) {
|
|
||||||
return WidgetSpan(
|
|
||||||
child: GradientText(
|
|
||||||
content,
|
|
||||||
style: style,
|
|
||||||
softWrap: true,
|
|
||||||
textHeightBehavior: const TextHeightBehavior(
|
|
||||||
applyHeightToLastDescent: false,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
style: style,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return TextSpan(
|
|
||||||
text: content,
|
|
||||||
style: style,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
return SelectionArea(
|
|
||||||
child: Text.rich(
|
|
||||||
TextSpan(children: [root.toInlineSpan(customParser)]),
|
|
||||||
textHeightBehavior:
|
|
||||||
const TextHeightBehavior(applyHeightToLastDescent: false),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,50 +0,0 @@
|
|||||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
||||||
|
|
||||||
part of 'rich_text_builder.dart';
|
|
||||||
|
|
||||||
// **************************************************************************
|
|
||||||
// ComponentCopyWithGenerator
|
|
||||||
// **************************************************************************
|
|
||||||
|
|
||||||
class $RichTextBuilderCWProxyImpl implements $RichTextBuilderComponentCWProxy {
|
|
||||||
const $RichTextBuilderCWProxyImpl(this._value);
|
|
||||||
final RichTextBuilder _value;
|
|
||||||
@override
|
|
||||||
RichTextBuilder text(String? text) => this(text: text);
|
|
||||||
@override
|
|
||||||
RichTextBuilder parser(RichTextParser? parser) => this(parser: parser);
|
|
||||||
@override
|
|
||||||
RichTextBuilder defaultStyle(TextStyle? defaultStyle) =>
|
|
||||||
this(defaultStyle: defaultStyle);
|
|
||||||
@override
|
|
||||||
RichTextBuilder styles(Map<String, TextStyle>? styles) =>
|
|
||||||
this(styles: styles);
|
|
||||||
@override
|
|
||||||
RichTextBuilder themeResolver(
|
|
||||||
ThemeResolver<dynamic, dynamic, dynamic>? themeResolver) =>
|
|
||||||
this(themeResolver: themeResolver);
|
|
||||||
@override
|
|
||||||
RichTextBuilder key(Key? key) => this(key: key);
|
|
||||||
@override
|
|
||||||
RichTextBuilder call({
|
|
||||||
String? text,
|
|
||||||
RichTextParser? parser,
|
|
||||||
TextStyle? defaultStyle,
|
|
||||||
Map<String, TextStyle>? styles,
|
|
||||||
ThemeResolver<dynamic, dynamic, dynamic>? themeResolver,
|
|
||||||
Key? key,
|
|
||||||
}) =>
|
|
||||||
RichTextBuilder(
|
|
||||||
text: text ?? _value.text,
|
|
||||||
parser: parser ?? _value.parser,
|
|
||||||
defaultStyle: defaultStyle ?? _value.defaultStyle,
|
|
||||||
styles: styles ?? _value.styles,
|
|
||||||
themeResolver: themeResolver ?? _value.themeResolver,
|
|
||||||
key: key ?? _value.key,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
mixin $RichTextBuilderCWMixin on Component {
|
|
||||||
$RichTextBuilderComponentCWProxy get copyWith =>
|
|
||||||
$RichTextBuilderCWProxyImpl(this as RichTextBuilder);
|
|
||||||
}
|
|
@ -1,49 +0,0 @@
|
|||||||
// Copyright (C) 2023 WYATT GROUP
|
|
||||||
// Please see the AUTHORS file for details.
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
|
||||||
import 'package:wyatt_ui_kit/wyatt_ui_kit.dart';
|
|
||||||
|
|
||||||
class RichTextBuilderThemeResolver extends ThemeResolver<RichTextBuilderStyle,
|
|
||||||
RichTextBuilderThemeExtension, void> {
|
|
||||||
const RichTextBuilderThemeResolver({
|
|
||||||
required this.computeExtensionValueFn,
|
|
||||||
required this.customStyleFn,
|
|
||||||
});
|
|
||||||
|
|
||||||
/// Values taken from <https://api.flutter.dev/flutter/material/ElevatedButton/defaultStyleOf.html>
|
|
||||||
@override
|
|
||||||
RichTextBuilderStyle computeDefaultValue(
|
|
||||||
BuildContext context, {
|
|
||||||
void extra,
|
|
||||||
}) =>
|
|
||||||
RichTextBuilderStyle(
|
|
||||||
defaultStyle: context.textTheme.bodyMedium,
|
|
||||||
);
|
|
||||||
|
|
||||||
@override
|
|
||||||
final RichTextBuilderStyle? Function(
|
|
||||||
BuildContext context,
|
|
||||||
RichTextBuilderStyle defaultValue,
|
|
||||||
RichTextBuilderThemeExtension themeExtension, {
|
|
||||||
void extra,
|
|
||||||
}) computeExtensionValueFn;
|
|
||||||
|
|
||||||
@override
|
|
||||||
final RichTextBuilderStyle? Function(BuildContext context, {void extra})
|
|
||||||
customStyleFn;
|
|
||||||
}
|
|
@ -15,13 +15,12 @@
|
|||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:wyatt_ui_components/wyatt_wyatt_ui_components.dart';
|
|
||||||
|
|
||||||
abstract class CardThemeExtension extends ThemeExtension<CardThemeExtension> {
|
abstract class CardThemeExtension extends ThemeExtension<CardThemeExtension> {
|
||||||
const CardThemeExtension({
|
const CardThemeExtension({
|
||||||
this.backgroundColors,
|
this.backgroundColors,
|
||||||
this.secondaryBackgroundColor,
|
this.secondaryBackgroundColors,
|
||||||
this.borderColors,
|
this.borderColor,
|
||||||
this.shadowColor,
|
this.shadowColor,
|
||||||
this.body,
|
this.body,
|
||||||
this.title,
|
this.title,
|
||||||
@ -29,9 +28,9 @@ abstract class CardThemeExtension extends ThemeExtension<CardThemeExtension> {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Colors
|
// Colors
|
||||||
final MultiColor? backgroundColors;
|
final List<Color>? backgroundColors;
|
||||||
final Color? secondaryBackgroundColor;
|
final Color? secondaryBackgroundColors;
|
||||||
final MultiColor? borderColors;
|
final List<Color>? borderColor;
|
||||||
final BoxShadow? shadowColor;
|
final BoxShadow? shadowColor;
|
||||||
|
|
||||||
// TextStyles
|
// TextStyles
|
||||||
|
@ -15,6 +15,5 @@
|
|||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
export './button_theme_extension/button_theme_extension.dart';
|
export './button_theme_extension/button_theme_extension.dart';
|
||||||
export './card_theme_extension.dart';
|
|
||||||
export './loader_theme_extension.dart';
|
export './loader_theme_extension.dart';
|
||||||
export './rich_text_builder_theme_extension.dart';
|
export 'card_theme_extension.dart';
|
||||||
|
@ -1,31 +0,0 @@
|
|||||||
// Copyright (C) 2023 WYATT GROUP
|
|
||||||
// Please see the AUTHORS file for details.
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
|
|
||||||
abstract class RichTextBuilderThemeExtension
|
|
||||||
extends ThemeExtension<RichTextBuilderThemeExtension> {
|
|
||||||
const RichTextBuilderThemeExtension({
|
|
||||||
this.defaultStyle,
|
|
||||||
this.styles,
|
|
||||||
});
|
|
||||||
|
|
||||||
/// Default TextStyle used in this rich text component.
|
|
||||||
final TextStyle? defaultStyle;
|
|
||||||
|
|
||||||
/// Used styles in this rich text component.
|
|
||||||
final Map<String, TextStyle>? styles;
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user