Skip to content

Commit

Permalink
fix: Removed hardcoded "See more" color from scan card (#1357)
Browse files Browse the repository at this point in the history
  • Loading branch information
AshAman999 authored Mar 28, 2022
1 parent e65a08d commit 98b4271
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/smooth_app/lib/pages/product/summary_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,10 @@ class _SummaryCardState extends State<SummaryCard> {
padding: const EdgeInsets.symmetric(
vertical: SMALL_SPACE,
),
decoration: const BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.vertical(bottom: ROUNDED_RADIUS),
decoration: BoxDecoration(
color: Theme.of(context).cardColor,
borderRadius:
const BorderRadius.vertical(bottom: ROUNDED_RADIUS),
),
child: Center(
child: Text(
Expand Down

0 comments on commit 98b4271

Please sign in to comment.