fix(client): 关于页「检查更新」按钮与反馈按钮同规格对齐(38h 通栏)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
wangjia
2026-07-04 20:48:15 +08:00
parent 02cffcb9ba
commit f9d5bc79c7
4 changed files with 8 additions and 3 deletions
+8 -3
View File
@@ -189,10 +189,15 @@ class _AboutScreenState extends ConsumerState<AboutScreen> {
Text('酒水进销存管理系统',
style: TextStyle(fontSize: AppDims.fsSm, color: t.muted)),
]),
const SizedBox(height: 12),
// 检查更新与下方反馈按钮同规格(38h 通栏,左右边缘对齐)
Row(children: [
Expanded(
child: DsButton('检查更新',
icon: LucideIcons.refreshCw, onPressed: _checkUpdate),
),
]),
const SizedBox(height: 10),
DsSmallGhostButton(
label: '检查更新', icon: LucideIcons.refreshCw, onTap: _checkUpdate),
const SizedBox(height: 18),
Row(children: [
Expanded(
child: DsButton('反馈 Bug',
Binary file not shown.

Before

Width:  |  Height:  |  Size: 122 KiB

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 KiB

After

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 123 KiB

After

Width:  |  Height:  |  Size: 123 KiB