Skip to content

Commit

Permalink
fix(patched-applications): non-patched app showing on Installed sec…
Browse files Browse the repository at this point in the history
…tion (ReVanced#1022)
  • Loading branch information
TheAabedKhan authored and schrobingus committed Jul 27, 2023
1 parent ef69c23 commit 39f68c2
Showing 1 changed file with 37 additions and 4 deletions.
41 changes: 37 additions & 4 deletions lib/ui/widgets/homeView/installed_apps_card.dart
Original file line number Diff line number Diff line change
@@ -1,16 +1,49 @@
import 'package:device_apps/device_apps.dart';
import 'package:flutter/material.dart';
import 'package:flutter_i18n/flutter_i18n.dart';
import 'package:revanced_manager/app/app.locator.dart';
import 'package:revanced_manager/models/patched_application.dart';
import 'package:revanced_manager/services/manager_api.dart';
import 'package:revanced_manager/ui/views/home/home_viewmodel.dart';
import 'package:revanced_manager/ui/widgets/shared/application_item.dart';
import 'package:revanced_manager/ui/widgets/shared/custom_card.dart';

class InstalledAppsCard extends StatelessWidget {
InstalledAppsCard({Key? key}) : super(key: key);
class InstalledAppsCard extends StatefulWidget {
const InstalledAppsCard({Key? key}) : super(key: key);

final List<PatchedApplication> apps =
locator<HomeViewModel>().patchedInstalledApps;
@override
State<InstalledAppsCard> createState() => _InstalledAppsCardState();
}

class _InstalledAppsCardState extends State<InstalledAppsCard> {
List<PatchedApplication> apps = locator<HomeViewModel>().patchedInstalledApps;
final ManagerAPI _managerAPI = locator<ManagerAPI>();
List<PatchedApplication> patchedApps = [];

@override
void initState() {
super.initState();
_getApps();
}

Future _getApps() async {
if (apps.isNotEmpty) {
patchedApps = [...apps];
for (final element in apps) {
await DeviceApps.getApp(element.packageName).then((value) {
if (element.version != value?.versionName) {
patchedApps.remove(element);
}
});
}
if (apps.length != patchedApps.length) {
await _managerAPI.setPatchedApps(patchedApps);
apps.clear();
apps = [...patchedApps];
}
setState(() {});
}
}

@override
Widget build(BuildContext context) {
Expand Down

0 comments on commit 39f68c2

Please sign in to comment.