mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-08-11 01:20:16 +02:00
Fix 'Please Wait' message on Apps page
This commit is contained in:
@@ -543,14 +543,14 @@ class AppsPageState extends State<AppsPage> {
|
|||||||
trailing: listedApps[index].downloadProgress != null
|
trailing: listedApps[index].downloadProgress != null
|
||||||
? SizedBox(
|
? SizedBox(
|
||||||
width: 110,
|
width: 110,
|
||||||
child: Text(tr('percentProgress', args: [
|
child: Text(listedApps[index].downloadProgress! >= 0
|
||||||
listedApps[index].downloadProgress! >= 0
|
? tr('percentProgress', args: [
|
||||||
? listedApps[index]
|
listedApps[index]
|
||||||
.downloadProgress!
|
.downloadProgress!
|
||||||
.toInt()
|
.toInt()
|
||||||
.toString()
|
.toString()
|
||||||
: tr('pleaseWait')
|
])
|
||||||
])))
|
: tr('pleaseWait')))
|
||||||
: trailingRow,
|
: trailingRow,
|
||||||
onTap: () {
|
onTap: () {
|
||||||
if (selectedAppIds.isNotEmpty) {
|
if (selectedAppIds.isNotEmpty) {
|
||||||
|
Reference in New Issue
Block a user