From 63e977b83b4fb58fab6b7db990893db27a832e2a Mon Sep 17 00:00:00 2001 From: Ming Ming Date: Tue, 5 Jul 2022 22:29:15 +0800 Subject: [PATCH] Fix scroll label invisible under light theme --- app/lib/widget/home_photos.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/lib/widget/home_photos.dart b/app/lib/widget/home_photos.dart index 943cc37c..19640aef 100644 --- a/app/lib/widget/home_photos.dart +++ b/app/lib/widget/home_photos.dart @@ -353,8 +353,8 @@ class _HomePhotosState extends State padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8), child: Text( text, - style: TextStyle( - color: AppTheme.getPrimaryTextColorInverse(context), + style: const TextStyle( + color: AppTheme.primaryTextColorLight, ), ), );