From 1f8835bb7eeb22428f804f665de3cf0830564972 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malo=20L=C3=A9on?= Date: Tue, 21 Feb 2023 08:53:38 +0100 Subject: [PATCH] fix(ui_kit): fix conflicts in card component after rebase --- .../lib/src/components/cards/widgets/card_wrapper.dart | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/packages/wyatt_ui_kit/lib/src/components/cards/widgets/card_wrapper.dart b/packages/wyatt_ui_kit/lib/src/components/cards/widgets/card_wrapper.dart index 736c0387..46a72582 100644 --- a/packages/wyatt_ui_kit/lib/src/components/cards/widgets/card_wrapper.dart +++ b/packages/wyatt_ui_kit/lib/src/components/cards/widgets/card_wrapper.dart @@ -112,7 +112,8 @@ class _CardWrapperState extends State { extensionCardColor.backgroundColors != null && extensionCardColor.backgroundColors!.isGradient) { return LinearGradient( - colors: extensionCardColor.backgroundColors!.colors,); + colors: extensionCardColor.backgroundColors!.colors, + ); } } return null; @@ -151,15 +152,9 @@ class _CardWrapperState extends State { final extensionCardColor = Theme.of(context).extension(); if (extensionCardColor != null && -<<<<<<< HEAD extensionCardColor.borderColors != null) { if (extensionCardColor.borderColors!.isGradient) { - return GradientBoxBorder( -======= - extensionCardColor.borderColor != null) { - if (extensionCardColor.borderColor!.length >= 2) { return CustomGradientBoxBorder( ->>>>>>> 548df1c (feat(ui_kit): implemement text inputs (#138)) gradient: LinearGradient( colors: extensionCardColor.borderColors!.colors, ),