notifications colors fix
This commit is contained in:
@@ -118,7 +118,7 @@ class _DesktopNotificationPageState extends State<DesktopNotificationPage>
|
||||
const Expanded(
|
||||
child: Center(
|
||||
child: CircularProgressIndicator(
|
||||
color: AppColors.secondary50,
|
||||
color: AppColors.cyanTeal,
|
||||
),
|
||||
),
|
||||
)
|
||||
@@ -150,9 +150,10 @@ class _DesktopNotificationPageState extends State<DesktopNotificationPage>
|
||||
onTap: () async {
|
||||
final selectedPage = await showDialog<int>(
|
||||
context: context,
|
||||
builder: (context) => PageSelectionDialog(
|
||||
totalPages: totalPages,
|
||||
),
|
||||
builder:
|
||||
(context) => PageSelectionDialog(
|
||||
totalPages: totalPages,
|
||||
),
|
||||
);
|
||||
|
||||
if (selectedPage != null) {
|
||||
|
||||
@@ -103,7 +103,7 @@ class _MobileNotificationPageState extends State<MobileNotificationPage>
|
||||
children: [
|
||||
NotificationAllTab(scrollController: _scrollAll),
|
||||
NotificationUnreadTab(scrollController: _scrollUnread),
|
||||
NotificationImportantTab(scrollController: _scrollImportant),
|
||||
NotificationImportantTab(scrollController: _scrollImportant),
|
||||
],
|
||||
),
|
||||
),
|
||||
@@ -112,7 +112,7 @@ class _MobileNotificationPageState extends State<MobileNotificationPage>
|
||||
const Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 16),
|
||||
child: Center(
|
||||
child: CircularProgressIndicator(color: AppColors.secondary50),
|
||||
child: CircularProgressIndicator(color: AppColors.cyanTeal),
|
||||
),
|
||||
),
|
||||
|
||||
@@ -120,7 +120,7 @@ class _MobileNotificationPageState extends State<MobileNotificationPage>
|
||||
const Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 16),
|
||||
child: Center(
|
||||
child: CircularProgressIndicator(color: AppColors.secondary50),
|
||||
child: CircularProgressIndicator(color: AppColors.cyanTeal),
|
||||
),
|
||||
),
|
||||
|
||||
@@ -128,7 +128,7 @@ class _MobileNotificationPageState extends State<MobileNotificationPage>
|
||||
const Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 16),
|
||||
child: Center(
|
||||
child: CircularProgressIndicator(color: AppColors.secondary50),
|
||||
child: CircularProgressIndicator(color: AppColors.cyanTeal),
|
||||
),
|
||||
),
|
||||
],
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user