Skip to content

Commit

Permalink
fix/644-Guardian-Angel-light-mode-UI-fixed (#649)
Browse files Browse the repository at this point in the history
  • Loading branch information
manit101 authored Jan 28, 2025
1 parent 8405e3c commit e4e75ff
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lib/app/modules/addOrUpdateAlarm/views/guardian_angel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ class GaurdianAngel extends StatelessWidget {
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(18),
),
backgroundColor: kprimaryBackgroundColor,
backgroundColor: themeController
.secondaryBackgroundColor.value,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
Expand Down Expand Up @@ -160,7 +161,7 @@ class GaurdianAngel extends StatelessWidget {
color: (val == 0 && !controller.isCall.value) ||
(val == 1 && controller.isCall.value)
? kprimaryColor
: ksecondaryBackgroundColor,
: kLightPrimaryDisabledTextColor,
borderRadius: BorderRadius.circular(20),
),
child: Padding(
Expand Down Expand Up @@ -202,14 +203,14 @@ class GaurdianAngel extends StatelessWidget {
},
child: Container(
decoration: BoxDecoration(
color: ksecondaryBackgroundColor,
color: themeController.primaryColor.value,
borderRadius: BorderRadius.circular(20),
),
child: const Padding(
padding: EdgeInsets.all(8.0),
child: Icon(
Icons.check,
color: kprimaryColor,
color: ksecondaryTextColor,
),
),
),
Expand Down

0 comments on commit e4e75ff

Please sign in to comment.