feat(ui_component): generate new skillcard component

This commit is contained in:
Hugo Pointcheval 2023-04-07 17:14:43 +02:00 committed by Hugo Pointcheval
parent 6f09eeca0e
commit 30a7cc4894
2 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ abstract class SkillCardComponent extends CardComponent
super.key, super.key,
}); });
final IconData? icon; final Widget? icon;
final List<Color>? gradient; final List<Color>? gradient;
final TextWrapper? title; final TextWrapper? title;
final TextWrapper? description; final TextWrapper? description;

View File

@ -7,7 +7,7 @@ part of 'skill_card_component.dart';
// ************************************************************************** // **************************************************************************
abstract class $SkillCardComponentCWProxy { abstract class $SkillCardComponentCWProxy {
SkillCardComponent icon(IconData? icon); SkillCardComponent icon(Widget? icon);
SkillCardComponent gradient(List<Color>? gradient); SkillCardComponent gradient(List<Color>? gradient);
SkillCardComponent title(TextWrapper? title); SkillCardComponent title(TextWrapper? title);
SkillCardComponent description(TextWrapper? description); SkillCardComponent description(TextWrapper? description);
@ -25,7 +25,7 @@ abstract class $SkillCardComponentCWProxy {
SkillCardComponent background(Widget? background); SkillCardComponent background(Widget? background);
SkillCardComponent key(Key? key); SkillCardComponent key(Key? key);
SkillCardComponent call({ SkillCardComponent call({
IconData? icon, Widget? icon,
List<Color>? gradient, List<Color>? gradient,
TextWrapper? title, TextWrapper? title,
TextWrapper? description, TextWrapper? description,