From 55739a9c7893374ff23f536b56fe9742efe994ff Mon Sep 17 00:00:00 2001 From: Aunali321 Date: Sat, 17 Sep 2022 20:56:44 +0530 Subject: [PATCH] fix: background should be more opaque. --- lib/ui/widgets/shared/custom_card.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/widgets/shared/custom_card.dart b/lib/ui/widgets/shared/custom_card.dart index f69db353..84293ce9 100644 --- a/lib/ui/widgets/shared/custom_card.dart +++ b/lib/ui/widgets/shared/custom_card.dart @@ -16,7 +16,7 @@ class CustomCard extends StatelessWidget { decoration: BoxDecoration( borderRadius: BorderRadius.circular(16), color: isFilled - ? Theme.of(context).colorScheme.secondaryContainer.withOpacity(0.25) + ? Theme.of(context).colorScheme.secondaryContainer.withOpacity(0.40) : Colors.transparent, border: isFilled ? null