mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
a54ca799b9
* update rules of analysis_options.yaml. and solved all problems * refactor: fix remaining problems --------- Co-authored-by: Ushie <ushiekane@gmail.com>
67 lines
2.2 KiB
Dart
67 lines
2.2 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/patch.dart';
|
|
import 'package:revanced_manager/ui/views/patcher/patcher_viewmodel.dart';
|
|
import 'package:revanced_manager/ui/widgets/shared/custom_card.dart';
|
|
|
|
class PatchSelectorCard extends StatelessWidget {
|
|
const PatchSelectorCard({
|
|
Key? key,
|
|
required this.onPressed,
|
|
}) : super(key: key);
|
|
final Function() onPressed;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return CustomCard(
|
|
onTap: onPressed,
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: <Widget>[
|
|
Row(
|
|
children: <Widget>[
|
|
I18nText(
|
|
locator<PatcherViewModel>().selectedPatches.isEmpty
|
|
? 'patchSelectorCard.widgetTitle'
|
|
: 'patchSelectorCard.widgetTitleSelected',
|
|
child: const Text(
|
|
'',
|
|
style: TextStyle(
|
|
fontSize: 18,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
),
|
|
Text(
|
|
locator<PatcherViewModel>().selectedPatches.isEmpty
|
|
? ''
|
|
: ' (${locator<PatcherViewModel>().selectedPatches.length})',
|
|
style: const TextStyle(
|
|
fontSize: 18,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
const SizedBox(height: 4),
|
|
if (locator<PatcherViewModel>().selectedApp == null)
|
|
I18nText('patchSelectorCard.widgetSubtitle')
|
|
else
|
|
locator<PatcherViewModel>().selectedPatches.isEmpty
|
|
? I18nText('patchSelectorCard.widgetEmptySubtitle')
|
|
: Text(_getPatchesSelection()),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
String _getPatchesSelection() {
|
|
String text = '';
|
|
for (final Patch p in locator<PatcherViewModel>().selectedPatches) {
|
|
text += '\u2022 ${p.getSimpleName()} (v${p.version})\n';
|
|
}
|
|
return text.substring(0, text.length - 1);
|
|
}
|
|
}
|