feat: 修改hidialog弹窗位置,增加macos dmg打包配置

This commit is contained in:
2026-01-12 00:45:52 -08:00
parent 2d1f391932
commit e6ee3d6db8
22 changed files with 393 additions and 157 deletions
+12 -5
View File
@@ -124,11 +124,18 @@ class GlobalOverlayService extends GetxService {
return const SizedBox.shrink();
}
return Text(
'购买套餐',
style: TextStyle(
color: Colors.black,
fontSize: 12.sp,
return DefaultTextStyle(
style: const TextStyle(
decoration: TextDecoration.none, // 核心:显式声明无装饰
),
child: Text(
'购买套餐',
style: TextStyle(
color: Colors.black,
fontSize: 12.sp,
fontWeight: FontWeight.w600,
decoration: TextDecoration.none, // 也可以在这里直接写
),
),
);
}),