notifications colors fix

This commit is contained in:
amirrezaghabeli
2025-09-29 09:15:40 +03:30
parent bc89e69209
commit 4ef3ca206d
8 changed files with 39 additions and 26 deletions
@@ -119,9 +119,7 @@ class _TabletNotificationPageState extends State<TabletNotificationPage>
if (isLoading)
const Expanded(
child: Center(
child: CircularProgressIndicator(
color: AppColors.secondary50,
),
child: CircularProgressIndicator(color: AppColors.cyanTeal),
),
)
else
@@ -152,9 +150,9 @@ class _TabletNotificationPageState extends State<TabletNotificationPage>
onTap: () async {
final selectedPage = await showDialog<int>(
context: context,
builder: (context) => PageSelectionDialog(
totalPages: totalPages,
),
builder:
(context) =>
PageSelectionDialog(totalPages: totalPages),
);
if (selectedPage != null) {