Merge branch 'design'

This commit is contained in:
guozhigq
2024-12-11 23:54:20 +08:00
9 changed files with 16 additions and 19 deletions

View File

@ -197,13 +197,13 @@ class LikeItem extends StatelessWidget {
),
),
const SizedBox(width: 25),
if (type == 'reply' || type == 'danmu')
if (type == 'reply' || type == 'danmu' || type == 'dynamic')
Container(
width: 60,
height: 60,
padding: const EdgeInsets.all(4),
child: Text(
item.item!.title!,
item.item?.title ?? '',
maxLines: 4,
style: const TextStyle(fontSize: 12, letterSpacing: 0.3),
overflow: TextOverflow.ellipsis,