revert: dyn font size

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-10 16:57:31 +08:00
parent a8054be82e
commit 68fe3bbd4b
2 changed files with 6 additions and 3 deletions

View File

@@ -58,7 +58,7 @@ Widget content(
child: Text(
'#${item.modules.moduleDynamic!.topic!.name}',
style: TextStyle(
fontSize: 15,
fontSize: source == 'detail' && !isSave ? 16 : 15,
color: theme.colorScheme.primary,
),
),
@@ -68,7 +68,9 @@ Widget content(
source == 'detail'
? SelectableText.rich(
richNodes,
style: const TextStyle(fontSize: 15),
style: isSave
? const TextStyle(fontSize: 15)
: const TextStyle(fontSize: 16),
)
: Text.rich(
style: const TextStyle(fontSize: 15),