From 7c82193f22e7669415d99928628f991a05be7e8a Mon Sep 17 00:00:00 2001 From: guozhigq Date: Sat, 6 Jan 2024 15:46:37 +0800 Subject: [PATCH] =?UTF-8?q?mod:=20up=E8=AE=BE=E7=BD=AE=E5=88=86=E7=BB=84?= =?UTF-8?q?=E9=80=82=E9=85=8D=E6=9A=97=E9=BB=91=E6=A8=A1=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/pages/video/detail/introduction/controller.dart | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/pages/video/detail/introduction/controller.dart b/lib/pages/video/detail/introduction/controller.dart index 14fb30ce..fe2631bc 100644 --- a/lib/pages/video/detail/introduction/controller.dart +++ b/lib/pages/video/detail/introduction/controller.dart @@ -438,8 +438,15 @@ class VideoIntroController extends GetxController { if (context.mounted) { ScaffoldMessenger.of(context).showSnackBar( SnackBar( - content: const Text('关注成功'), + content: Text( + '关注成功', + style: TextStyle( + color: + Theme.of(context).colorScheme.onBackground), + ), duration: const Duration(seconds: 2), + backgroundColor: + Theme.of(context).colorScheme.background, action: SnackBarAction( label: '设置分组', onPressed: setFollowGroup,