Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-09-19 15:32:46 +08:00
parent 099c7b4dff
commit 51c605f5d0
16 changed files with 227 additions and 171 deletions

View File

@@ -254,20 +254,25 @@ class _HistoryPageState extends State<HistoryPage>
padding: const EdgeInsets.only(left: 16, right: 6),
child: Row(
children: [
Icon(
Icons.info_outline,
size: 18,
color: theme.onSecondaryContainer,
),
const SizedBox(width: 4),
Expanded(
child: Text(
'历史记录功能已关闭',
child: Text.rich(
strutStyle: const StrutStyle(height: 1, leading: 0),
style: TextStyle(
height: 1,
color: theme.onSecondaryContainer,
),
TextSpan(
children: [
WidgetSpan(
child: Icon(
Icons.info_outline,
size: 18,
color: theme.onSecondaryContainer,
),
),
const TextSpan(text: ' 历史记录功能已关闭'),
],
),
),
),
GestureDetector(