Skip to content

Commit 8613fd1

Browse files
committed
fix text color in notification popup dialogue
1 parent f512b90 commit 8613fd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Components/notification_popup_dialogue_container.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Widget notificationPopupDialogueContainer({required BuildContext context}) {
5555
child: Text(
5656
'Clear All',
5757
style: TextStyle(
58-
color: Colors.white60,
58+
color: ThemeProvider.theme.textTheme.bodyText1?.color,
5959
),
6060
),
6161
)
@@ -103,7 +103,7 @@ class NotificationListTile extends StatelessWidget {
103103
Text(
104104
DateTime.fromMillisecondsSinceEpoch(model.ts).toString(),
105105
textAlign: TextAlign.left,
106-
style: TextStyle(fontSize: 12, color: Colors.white38),
106+
style: TextStyle(fontSize: 12, color: Colors.grey[500]),
107107
),
108108
SizedBox(
109109
height: 4,

0 commit comments

Comments
 (0)