Added Signal.org, fixed bugs, UX tweaks, readme update

This commit is contained in:
Imran Remtulla
2022-08-27 17:47:08 -04:00
parent 5bdab1b1e4
commit 7e5affe1b8
5 changed files with 49 additions and 10 deletions

View File

@@ -46,14 +46,14 @@ class _AppPageState extends State<AppPage> {
appsProvider
.checkAppObjectForUpdate(
app!.app)) &&
app?.downloadProgress == null
!appsProvider.areDownloadsRunning()
? () {
HapticFeedback.heavyImpact();
appsProvider
.downloadAndInstallLatestApp(
[app!.app.id],
context).then((res) {
if (res) {
if (res && mounted) {
Navigator.of(context).pop();
}
});