Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-11-01 11:01:31 +08:00
parent 0a5965a423
commit 77dd939172
10 changed files with 40 additions and 40 deletions

View File

@@ -347,25 +347,28 @@ class _ArticlePageState extends CommonDynPageState<ArticlePage> {
src: controller.summary.author?.face,
),
const SizedBox(width: 10),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
controller.summary.author?.name ?? '',
style: TextStyle(
fontSize: theme.textTheme.titleSmall!.fontSize,
),
),
if (pubTime != null)
Flexible(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
DateFormatUtils.format(pubTime),
controller.summary.author?.name ?? '',
style: TextStyle(
color: theme.colorScheme.outline,
fontSize:
theme.textTheme.labelSmall!.fontSize,
theme.textTheme.titleSmall!.fontSize,
),
),
],
if (pubTime != null)
Text(
DateFormatUtils.format(pubTime),
style: TextStyle(
color: theme.colorScheme.outline,
fontSize:
theme.textTheme.labelSmall!.fontSize,
),
),
],
),
),
],
),