mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
35 lines
1.1 KiB
Dart
35 lines
1.1 KiB
Dart
import 'package:device_apps/device_apps.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:revanced_manager/app/app.locator.dart';
|
|
import 'package:revanced_manager/models/patched_application.dart';
|
|
import 'package:revanced_manager/ui/views/home/home_viewmodel.dart';
|
|
import 'package:revanced_manager/ui/widgets/shared/application_item.dart';
|
|
|
|
class InstalledAppsCard extends StatelessWidget {
|
|
InstalledAppsCard({
|
|
Key? key,
|
|
}) : super(key: key);
|
|
|
|
final List<PatchedApplication> apps =
|
|
locator<HomeViewModel>().patchedInstalledApps;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ListView(
|
|
shrinkWrap: true,
|
|
padding: EdgeInsets.zero,
|
|
physics: const NeverScrollableScrollPhysics(),
|
|
children: apps
|
|
.map((app) => ApplicationItem(
|
|
icon: app.icon,
|
|
name: app.name,
|
|
patchDate: app.patchDate,
|
|
changelog: app.changelog,
|
|
isUpdatableApp: false,
|
|
onPressed: () => DeviceApps.openApp(app.packageName),
|
|
))
|
|
.toList(),
|
|
);
|
|
}
|
|
}
|