diff --git a/lib/pages/dynamics/widgets/content_panel.dart b/lib/pages/dynamics/widgets/content_panel.dart index 47b7203c4..fd5ee235e 100644 --- a/lib/pages/dynamics/widgets/content_panel.dart +++ b/lib/pages/dynamics/widgets/content_panel.dart @@ -191,13 +191,16 @@ class _ContentState extends State { /// fix 默认20px高度 style: const TextStyle(height: 0), richNode(widget.item, context), - maxLines: widget.source == 'detail' ? 999 : 3, + // maxLines: widget.source == 'detail' ? 999 : 3, overflow: TextOverflow.ellipsis, ), ), ), if (hasPics) ...[ - Text.rich(picsNodes()), + Text.rich( + picsNodes(), + semanticsLabel: '动态图片', + ), ] ], ),