Skip to content

Commit

Permalink
Fix: video tip text in bright color mode
Browse files Browse the repository at this point in the history
  • Loading branch information
MiaoMint committed Aug 28, 2023
1 parent b85d88f commit 385d7a7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/pages/watch/widgets/video/video_player.dart
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,12 @@ class _VideoPlayerState extends State<VideoPlayer> {
maxHeight: 200,
maxWidth: maxWidth,
),
child: _c.cuurentMessageWidget.value,
child: DefaultTextStyle(
style: const TextStyle(
color: Colors.white,
),
child: _c.cuurentMessageWidget.value!,
),
).animate().fade(),
),
],
Expand Down

0 comments on commit 385d7a7

Please sign in to comment.