mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
3ae4d69110
Fixes all issues in `flutter analyze`. <Reviewed> Commits: * chore: migrate deprecated text style * chore: migrate `toggleableActiveColor` to individual theme * chore: don't use 'BuildContext's across async gaps
62 lines
2.1 KiB
Dart
62 lines
2.1 KiB
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/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);
|
|
|
|
final List<PatchedApplication> apps =
|
|
locator<HomeViewModel>().patchedInstalledApps;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return apps.isEmpty
|
|
? CustomCard(
|
|
child: Center(
|
|
child: Column(
|
|
children: <Widget>[
|
|
Icon(
|
|
size: 40,
|
|
Icons.file_download_off,
|
|
color: Theme.of(context).colorScheme.secondary,
|
|
),
|
|
const SizedBox(height: 16),
|
|
I18nText(
|
|
'homeView.noInstallations',
|
|
child: Text(
|
|
'',
|
|
textAlign: TextAlign.center,
|
|
style: Theme.of(context).textTheme.titleMedium!.copyWith(
|
|
color: Theme.of(context).colorScheme.secondary,
|
|
),
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
)
|
|
: 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: () =>
|
|
locator<HomeViewModel>().navigateToAppInfo(app),
|
|
),
|
|
)
|
|
.toList(),
|
|
);
|
|
}
|
|
}
|