Skip to content

Commit d1ba3f8

Browse files
fix: dark mode issue in feedback page (#6576)
* fix: dark mode issue in feedback page * fix: dark mode issue in feedback page * fix: dark mode issue in feedback page * fix: dark mode issue in feedback page * fix: dark mode issue in feedback page
1 parent 44e4e5a commit d1ba3f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/smooth_app/lib/pages/scan/carousel/main_card/bottom_cards/scan_app_review_card.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ class ScanAppReview extends StatelessWidget {
113113
foregroundColor:
114114
lightTheme ? Colors.white : colors.primaryDark,
115115
icon: DecoratedBox(
116-
decoration: const ShapeDecoration(
117-
shape: CircleBorder(),
118-
color: Colors.white,
116+
decoration: ShapeDecoration(
117+
shape: const CircleBorder(),
118+
color: lightTheme ? Colors.white : colors.primaryDark,
119119
),
120120
child: Padding(
121121
padding: const EdgeInsetsDirectional.all(

0 commit comments

Comments
 (0)