revanced-manager/lib/ui/widgets/patchesSelectorView/patch_item.dart

167 lines
6 KiB
Dart
Raw Normal View History

2022-08-07 20:05:44 +02:00
import 'package:flutter/material.dart';
import 'package:flutter_i18n/flutter_i18n.dart';
import 'package:revanced_manager/ui/widgets/installerView/custom_material_button.dart';
import 'package:revanced_manager/ui/widgets/shared/custom_card.dart';
2022-08-07 20:05:44 +02:00
2022-08-09 01:01:06 +02:00
// ignore: must_be_immutable
2022-08-07 21:15:52 +02:00
class PatchItem extends StatefulWidget {
2022-08-07 20:05:44 +02:00
final String name;
2022-08-09 03:30:12 +02:00
final String simpleName;
2022-08-07 20:05:44 +02:00
final String description;
final String version;
final String packageVersion;
final List<String> supportedPackageVersions;
final bool isUnsupported;
2022-08-07 21:15:52 +02:00
bool isSelected;
2022-08-18 16:33:33 +02:00
final Function(bool) onChanged;
2022-09-04 19:54:21 +02:00
final Widget? child;
2022-08-07 20:05:44 +02:00
2022-09-04 19:54:21 +02:00
PatchItem(
{Key? key,
required this.name,
required this.simpleName,
required this.description,
required this.version,
required this.packageVersion,
required this.supportedPackageVersions,
required this.isUnsupported,
required this.isSelected,
required this.onChanged,
this.child})
: super(key: key);
2022-08-07 20:05:44 +02:00
2022-08-07 21:15:52 +02:00
@override
State<PatchItem> createState() => _PatchItemState();
}
class _PatchItemState extends State<PatchItem> {
2022-08-07 20:05:44 +02:00
@override
Widget build(BuildContext context) {
2022-09-07 12:55:37 +02:00
return Padding(
padding: const EdgeInsets.symmetric(vertical: 4.0),
child: InkWell(
borderRadius: BorderRadius.circular(16),
onTap: () {
setState(() => widget.isSelected = !widget.isSelected);
widget.onChanged(widget.isSelected);
},
child: CustomCard(
child: Column(
children: <Widget>[
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Flexible(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Row(
crossAxisAlignment: CrossAxisAlignment.end,
children: <Widget>[
Text(
widget.simpleName,
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
),
),
const SizedBox(width: 4),
Text(widget.version)
],
2022-08-07 20:05:44 +02:00
),
const SizedBox(height: 4),
Text(
widget.description,
softWrap: true,
maxLines: 3,
overflow: TextOverflow.visible,
style: const TextStyle(fontSize: 14),
),
],
),
),
Transform.scale(
scale: 1.2,
child: Checkbox(
value: widget.isSelected,
activeColor: Theme.of(context).colorScheme.primary,
2022-09-07 12:55:37 +02:00
checkColor:
Theme.of(context).colorScheme.secondaryContainer,
side: BorderSide(
width: 2.0,
2022-09-07 12:55:37 +02:00
color: Theme.of(context).colorScheme.primary,
),
onChanged: (newValue) {
setState(() => widget.isSelected = newValue!);
widget.onChanged(widget.isSelected);
},
),
)
],
),
widget.isUnsupported
? Row(
children: <Widget>[
Padding(
padding: const EdgeInsets.only(top: 8),
child: TextButton.icon(
label:
I18nText('patchItem.unsupportedWarningButton'),
icon: const Icon(Icons.warning),
onPressed: () => _showUnsupportedWarningDialog(),
style: ButtonStyle(
shape: MaterialStateProperty.all(
RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12),
side: BorderSide(
width: 1,
color:
2022-09-07 12:55:37 +02:00
Theme.of(context).colorScheme.secondary,
),
),
),
backgroundColor: MaterialStateProperty.all(
Colors.transparent,
),
foregroundColor: MaterialStateProperty.all(
2022-09-07 12:55:37 +02:00
Theme.of(context).colorScheme.secondary,
),
),
),
),
],
)
: Container(),
widget.child ?? const SizedBox(),
],
),
),
2022-08-07 20:05:44 +02:00
),
);
}
Future<void> _showUnsupportedWarningDialog() {
2022-09-02 01:10:41 +02:00
return showDialog(
context: context,
2022-09-02 01:10:41 +02:00
builder: (context) => AlertDialog(
title: I18nText('patchItem.unsupportedDialogTitle'),
2022-09-07 12:55:37 +02:00
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
2022-09-02 01:10:41 +02:00
content: I18nText(
'patchItem.unsupportedDialogText',
2022-09-02 01:10:41 +02:00
translationParams: {
'packageVersion': widget.packageVersion,
'supportedVersions':
'\u2022 ${widget.supportedPackageVersions.join('\n\u2022 ')}',
},
),
actions: <Widget>[
CustomMaterialButton(
label: I18nText('okButton'),
2022-09-02 01:10:41 +02:00
onPressed: () => Navigator.of(context).pop(),
)
],
),
);
}
2022-08-07 20:05:44 +02:00
}