Fix scroll label invisible under light theme

This commit is contained in:
Ming Ming 2022-07-05 22:29:15 +08:00
parent f90acc076d
commit 63e977b83b

View file

@ -353,8 +353,8 @@ class _HomePhotosState extends State<HomePhotos>
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8), padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
child: Text( child: Text(
text, text,
style: TextStyle( style: const TextStyle(
color: AppTheme.getPrimaryTextColorInverse(context), color: AppTheme.primaryTextColorLight,
), ),
), ),
); );