This commit is contained in:
DESKTOP-I3JPKHK\wy 2025-11-28 11:47:50 +08:00
parent ec343386f1
commit 1c1934109f
1 changed files with 13 additions and 11 deletions

View File

@ -870,7 +870,6 @@ mixin _UpgradeDialogLogic<T extends StatefulWidget> on State<T> {
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Row( Row(
crossAxisAlignment: CrossAxisAlignment.end, crossAxisAlignment: CrossAxisAlignment.end,
children: [ children: [
Container( Container(
@ -898,7 +897,9 @@ mixin _UpgradeDialogLogic<T extends StatefulWidget> on State<T> {
), ),
if (info.apkSize != null) ...[ if (info.apkSize != null) ...[
const SizedBox(width: 6), const SizedBox(width: 6),
Text( Padding(
padding: EdgeInsetsGeometry.only(top: 4),
child: Text(
formatBytes(info.apkSize!), formatBytes(info.apkSize!),
textAlign: TextAlign.end, textAlign: TextAlign.end,
style: TextStyle( style: TextStyle(
@ -907,6 +908,7 @@ mixin _UpgradeDialogLogic<T extends StatefulWidget> on State<T> {
fontWeight: FontWeight.w500, fontWeight: FontWeight.w500,
), ),
), ),
)
] ]
], ],
), ),