UI tweaks

This commit is contained in:
Imran Remtulla
2023-05-06 13:28:41 -04:00
parent cc3c4cc79f
commit d5f7eced8b
2 changed files with 7 additions and 5 deletions

View File

@@ -515,10 +515,12 @@ class AppsPageState extends State<AppsPage> {
? FontWeight.bold
: FontWeight.normal)),
trailing: listedApps[index].downloadProgress != null
? Text(tr('percentProgress', args: [
listedApps[index].downloadProgress?.toInt().toString() ??
'100'
]))
? SizedBox(
width: 110,
child: Text(tr('percentProgress', args: [
listedApps[index].downloadProgress?.toInt().toString() ??
'100'
])))
: trailingRow,
onTap: () {
if (selectedAppIds.isNotEmpty) {