Skip to content

Commit

Permalink
fix: 最热/最新评论标识未刷新
Browse files Browse the repository at this point in the history
  • Loading branch information
guozhigq committed Mar 27, 2024
1 parent 6b028c3 commit aae08d0
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions lib/pages/video/detail/reply/view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,16 @@ class _VideoReplyPanelState extends State<VideoReplyPanel>
delegate: _MySliverPersistentHeaderDelegate(
child: Container(
height: 40,
padding: const EdgeInsets.fromLTRB(12, 6, 6, 0),
padding: const EdgeInsets.fromLTRB(12, 0, 6, 0),
color: Theme.of(context).colorScheme.surface,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
'${_videoReplyController.sortTypeLabel.value}评论',
style: const TextStyle(fontSize: 13),
Obx(
() => Text(
'${_videoReplyController.sortTypeLabel.value}评论',
style: const TextStyle(fontSize: 13),
),
),
SizedBox(
height: 35,
Expand Down

0 comments on commit aae08d0

Please sign in to comment.