fix: 推荐页作者超长限制、行高限制

This commit is contained in:
orz12
2024-02-22 17:07:29 +08:00
parent dff44c5f69
commit 43e0e4a428

View File

@@ -159,13 +159,13 @@ class VideoCardV extends StatelessWidget {
), ),
), ),
if (videoItem.duration > 0) if (videoItem.duration > 0)
PBadge( PBadge(
bottom: 6, bottom: 6,
right: 7, right: 7,
size: 'small', size: 'small',
type: 'gray', type: 'gray',
text: Utils.timeFormat(videoItem.duration), text: Utils.timeFormat(videoItem.duration),
) )
], ],
); );
}), }),
@@ -181,9 +181,7 @@ class VideoCardV extends StatelessWidget {
class VideoContent extends StatelessWidget { class VideoContent extends StatelessWidget {
final dynamic videoItem; final dynamic videoItem;
const VideoContent( const VideoContent({Key? key, required this.videoItem}) : super(key: key);
{Key? key, required this.videoItem})
: super(key: key);
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Expanded( return Expanded(
@@ -196,18 +194,19 @@ class VideoContent extends StatelessWidget {
Row( Row(
children: [ children: [
Expanded( Expanded(
child: Text( child: Text(videoItem.title,
videoItem.title, maxLines: 2,
maxLines: 2, overflow: TextOverflow.ellipsis,
overflow: TextOverflow.ellipsis, style: const TextStyle(
), height: 1.45,
)),
), ),
], ],
), ),
const SizedBox(height: 2), const SizedBox(height: 2),
VideoStat( VideoStat(
videoItem: videoItem, videoItem: videoItem,
), ),
Row( Row(
children: [ children: [
if (videoItem.goto == 'bangumi') ...[ if (videoItem.goto == 'bangumi') ...[
@@ -250,6 +249,7 @@ class VideoContent extends StatelessWidget {
child: Text( child: Text(
videoItem.owner.name, videoItem.owner.name,
maxLines: 1, maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle( style: TextStyle(
fontSize: fontSize:
Theme.of(context).textTheme.labelMedium!.fontSize, Theme.of(context).textTheme.labelMedium!.fontSize,