Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-12-25 18:12:33 +08:00
parent b5fe0faeec
commit 99602eea95
4 changed files with 18 additions and 16 deletions

View File

@@ -435,11 +435,12 @@ Widget addWidget(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
vote.title!,
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
if (vote.title case final title?)
Text(
title,
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
Text(
'${NumUtils.numFormat(vote.joinNum)}人参与',
maxLines: 1,