111
This commit is contained in:
parent
ec343386f1
commit
1c1934109f
|
|
@ -870,7 +870,6 @@ mixin _UpgradeDialogLogic<T extends StatefulWidget> on State<T> {
|
|||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Row(
|
||||
|
||||
crossAxisAlignment: CrossAxisAlignment.end,
|
||||
children: [
|
||||
Container(
|
||||
|
|
@ -896,17 +895,20 @@ mixin _UpgradeDialogLogic<T extends StatefulWidget> on State<T> {
|
|||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
if(info.apkSize != null) ...[
|
||||
if (info.apkSize != null) ...[
|
||||
const SizedBox(width: 6),
|
||||
Text(
|
||||
formatBytes(info.apkSize!),
|
||||
textAlign:TextAlign.end,
|
||||
style: TextStyle(
|
||||
color: colorScheme.onPrimary,
|
||||
fontSize: 8,
|
||||
fontWeight: FontWeight.w500,
|
||||
Padding(
|
||||
padding: EdgeInsetsGeometry.only(top: 4),
|
||||
child: Text(
|
||||
formatBytes(info.apkSize!),
|
||||
textAlign: TextAlign.end,
|
||||
style: TextStyle(
|
||||
color: colorScheme.onPrimary,
|
||||
fontSize: 8,
|
||||
fontWeight: FontWeight.w500,
|
||||
),
|
||||
),
|
||||
),
|
||||
)
|
||||
]
|
||||
],
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in New Issue