mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 09:07:47 +01:00
78 lines
2.5 KiB
Dart
78 lines
2.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:revanced_manager/app/app.locator.dart';
|
|
import 'package:revanced_manager/constants.dart';
|
|
import 'package:revanced_manager/models/patch.dart';
|
|
import 'package:revanced_manager/ui/views/app_selector/app_selector_viewmodel.dart';
|
|
import 'package:revanced_manager/ui/views/patches_selector/patches_selector_viewmodel.dart';
|
|
|
|
class PatchSelectorCard extends StatelessWidget {
|
|
final Function()? onPressed;
|
|
final Color? color;
|
|
|
|
const PatchSelectorCard({
|
|
Key? key,
|
|
this.onPressed,
|
|
this.color = const Color(0xff1B222B),
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return GestureDetector(
|
|
onTap: onPressed,
|
|
child: Container(
|
|
width: double.infinity,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(12),
|
|
color: color,
|
|
),
|
|
padding: const EdgeInsets.symmetric(vertical: 18, horizontal: 20),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
I18nText(
|
|
'patchSelectorCard.widgetTitle',
|
|
child: Text(
|
|
'',
|
|
style: GoogleFonts.roboto(
|
|
fontSize: 18,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 10),
|
|
locator<AppSelectorViewModel>().selectedApp == null
|
|
? I18nText(
|
|
'patchSelectorCard.widgetSubtitle',
|
|
child: Text(
|
|
'',
|
|
style: robotoTextStyle,
|
|
),
|
|
)
|
|
: locator<PatchesSelectorViewModel>().selectedPatches.isEmpty
|
|
? I18nText(
|
|
'patchSelectorCard.widgetEmptySubtitle',
|
|
child: Text(
|
|
'',
|
|
style: robotoTextStyle,
|
|
),
|
|
)
|
|
: Text(
|
|
_getPatchesSelection(),
|
|
style: robotoTextStyle,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
String _getPatchesSelection() {
|
|
String text = '';
|
|
for (Patch p in locator<PatchesSelectorViewModel>().selectedPatches) {
|
|
text += '${p.simpleName} (v${p.version})\n';
|
|
}
|
|
return text.substring(0, text.length - 1);
|
|
}
|
|
}
|