Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-03-17 17:09:24 +08:00
parent 7f2682bb7b
commit d1497115da
27 changed files with 118 additions and 141 deletions

View File

@@ -153,13 +153,12 @@ Widget module(
spacing: 2,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
if (common.title?.isNotEmpty ?? false)
Text(
common.title!,
style: TextStyle(color: theme.colorScheme.primary),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
Text(
'${common.titlePrefix ?? ''}${common.title ?? ''}',
style: TextStyle(color: theme.colorScheme.primary),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
if (common.desc?.isNotEmpty ?? false)
Text(
common.desc!,