Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MiaoMint committed Dec 13, 2023
1 parent bc8d910 commit eaa07e4
Showing 1 changed file with 21 additions and 18 deletions.
39 changes: 21 additions & 18 deletions lib/views/pages/watch/video/video_player_content.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,25 +28,28 @@ class _VideoPlayerContenState extends State<VideoPlayerConten> {
children: [
Expanded(
child: Obx(
() => Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
_c.title,
style: const TextStyle(
color: Colors.white,
fontSize: 18,
),
() => DefaultTextStyle(
style: const TextStyle(
overflow: TextOverflow.ellipsis,
color: Colors.white,
),
Text(
_c.playList[_c.index.value].name,
style: const TextStyle(
color: Colors.white,
fontSize: 14,
),
)
],
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
_c.title,
style: const TextStyle(
fontSize: 18,
),
),
Text(
_c.playList[_c.index.value].name,
style: const TextStyle(
fontSize: 14,
),
)
],
)),
),
),
MaterialDesktopCustomButton(
Expand Down

0 comments on commit eaa07e4

Please sign in to comment.