From a60172473b0ea8b6c13628f0d1308fcc1c1f3ded Mon Sep 17 00:00:00 2001 From: Prateek Sunal Date: Fri, 25 Jul 2025 14:06:11 +0530 Subject: [PATCH] chore: remove color scheme --- .../lib/ui/viewer/actions/smart_albums_status_widget.dart | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/mobile/apps/photos/lib/ui/viewer/actions/smart_albums_status_widget.dart b/mobile/apps/photos/lib/ui/viewer/actions/smart_albums_status_widget.dart index bbf9be5b18..63db239dc6 100644 --- a/mobile/apps/photos/lib/ui/viewer/actions/smart_albums_status_widget.dart +++ b/mobile/apps/photos/lib/ui/viewer/actions/smart_albums_status_widget.dart @@ -60,7 +60,6 @@ class _SmartAlbumsStatusWidgetState extends State @override Widget build(BuildContext context) { - final colorScheme = getEnteColorScheme(context); final textTheme = getEnteTextTheme(context); return AnimatedCrossFade( @@ -82,7 +81,7 @@ class _SmartAlbumsStatusWidgetState extends State decoration: BoxDecoration( borderRadius: BorderRadius.circular(8), color: EnteTheme.isDark(context) - ? Colors.white.withOpacity(0.08) + ? Colors.white.withOpacity(0.20) : Colors.black.withOpacity(0.65), ), child: Row( @@ -102,9 +101,7 @@ class _SmartAlbumsStatusWidgetState extends State (_syncingCollection?.$2 ?? true) ? S.of(context).addingPhotos : S.of(context).gettingReady, - style: textTheme.small.copyWith( - color: colorScheme.backdropBase, - ), + style: textTheme.small.copyWith(color: Colors.white), ), ], ),