fix(client): 关于页版本号不再显示 build 号,页脚版权加 ICP 备案号

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01JJ1g8XV1YhhmHRzhwWEW7o
This commit is contained in:
wangjia
2026-07-03 23:39:18 +08:00
parent 02db118f61
commit 2a5fea2647
7 changed files with 1 additions and 9 deletions
+1 -9
View File
@@ -8,7 +8,6 @@ import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:intl/intl.dart';
import 'package:lucide_icons_flutter/lucide_icons.dart';
import 'package:package_info_plus/package_info_plus.dart';
import 'package:url_launcher/url_launcher.dart';
import '../../core/config/app_config.dart';
@@ -61,7 +60,7 @@ class _AboutScreenState extends ConsumerState<AboutScreen> {
// 页脚
Padding(
padding: const EdgeInsets.only(top: 4, bottom: 12),
child: Text('© 2026 岩美科技 · 保留所有权利',
child: Text('© 2026 岩美科技 · 保留所有权利 · 京ICP备2026039814号',
textAlign: TextAlign.center,
style: TextStyle(fontSize: AppDims.fsXs, color: t.faint)),
),
@@ -281,13 +280,6 @@ class _AboutScreenState extends ConsumerState<AboutScreen> {
fontFamily: AppFonts.mono,
fontFamilyFallback: AppFonts.monoFallback,
color: t.heading)),
const SizedBox(width: 6),
FutureBuilder<PackageInfo>(
future: PackageInfo.fromPlatform(),
builder: (_, snap) => Text(
snap.hasData ? 'build ${snap.data!.buildNumber}' : '',
style: TextStyle(fontSize: AppDims.fsXs, color: t.faint)),
),
const Spacer(),
DsSmallGhostButton(
label: '检查更新', icon: LucideIcons.refreshCw, onTap: _checkUpdate),
Binary file not shown.

Before

Width:  |  Height:  |  Size: 434 KiB

After

Width:  |  Height:  |  Size: 433 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 436 KiB

After

Width:  |  Height:  |  Size: 435 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 482 KiB

After

Width:  |  Height:  |  Size: 481 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 344 KiB

After

Width:  |  Height:  |  Size: 343 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 346 KiB

After

Width:  |  Height:  |  Size: 345 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 374 KiB

After

Width:  |  Height:  |  Size: 372 KiB