2022-08-17 18:07:00 +02:00
|
|
|
import 'dart:typed_data';
|
2022-08-02 10:33:46 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2022-08-07 01:37:12 +02:00
|
|
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
2022-08-02 10:33:46 +02:00
|
|
|
import 'package:google_fonts/google_fonts.dart';
|
2022-08-09 01:01:06 +02:00
|
|
|
import 'package:revanced_manager/app/app.locator.dart';
|
2022-08-06 23:35:35 +02:00
|
|
|
import 'package:revanced_manager/constants.dart';
|
2022-08-18 16:33:33 +02:00
|
|
|
import 'package:revanced_manager/ui/views/patcher/patcher_viewmodel.dart';
|
2022-08-02 10:33:46 +02:00
|
|
|
|
|
|
|
class AppSelectorCard extends StatelessWidget {
|
2022-08-18 16:33:33 +02:00
|
|
|
final Function() onPressed;
|
2022-08-11 22:17:10 +02:00
|
|
|
|
2022-08-18 16:33:33 +02:00
|
|
|
const AppSelectorCard({
|
2022-08-02 10:33:46 +02:00
|
|
|
Key? key,
|
2022-08-18 16:33:33 +02:00
|
|
|
required this.onPressed,
|
2022-08-02 10:33:46 +02:00
|
|
|
}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return GestureDetector(
|
|
|
|
onTap: onPressed,
|
|
|
|
child: Container(
|
|
|
|
width: double.infinity,
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
borderRadius: BorderRadius.circular(12),
|
2022-09-01 12:16:14 +02:00
|
|
|
color: Theme.of(context).colorScheme.primary,
|
2022-08-02 10:33:46 +02:00
|
|
|
),
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 18, horizontal: 20),
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
2022-08-07 01:37:12 +02:00
|
|
|
I18nText(
|
2022-08-18 16:33:33 +02:00
|
|
|
locator<PatcherViewModel>().selectedApp == null
|
2022-08-17 18:07:00 +02:00
|
|
|
? 'appSelectorCard.widgetTitle'
|
|
|
|
: 'appSelectorCard.widgetTitleSelected',
|
2022-08-07 01:37:12 +02:00
|
|
|
child: Text(
|
|
|
|
'',
|
|
|
|
style: GoogleFonts.roboto(
|
|
|
|
fontSize: 18,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
),
|
2022-08-02 10:33:46 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
const SizedBox(height: 10),
|
2022-08-18 16:33:33 +02:00
|
|
|
locator<PatcherViewModel>().selectedApp == null
|
2022-08-17 18:07:00 +02:00
|
|
|
? I18nText(
|
2022-08-09 01:01:06 +02:00
|
|
|
'appSelectorCard.widgetSubtitle',
|
|
|
|
child: Text(
|
|
|
|
'',
|
2022-08-19 15:04:40 +02:00
|
|
|
style: kRobotoTextStyle,
|
2022-08-09 01:01:06 +02:00
|
|
|
),
|
2022-08-17 18:07:00 +02:00
|
|
|
)
|
|
|
|
: Row(
|
|
|
|
children: [
|
|
|
|
SizedBox(
|
|
|
|
height: 16.0,
|
|
|
|
child: ClipOval(
|
|
|
|
child: Image.memory(
|
2022-08-18 16:33:33 +02:00
|
|
|
locator<PatcherViewModel>().selectedApp == null
|
2022-08-17 18:07:00 +02:00
|
|
|
? Uint8List(0)
|
2022-08-18 16:33:33 +02:00
|
|
|
: locator<PatcherViewModel>().selectedApp!.icon,
|
2022-08-17 18:07:00 +02:00
|
|
|
fit: BoxFit.cover,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
const SizedBox(width: 4),
|
|
|
|
Text(
|
|
|
|
_getAppSelection(),
|
2022-08-19 15:04:40 +02:00
|
|
|
style: kRobotoTextStyle,
|
2022-08-17 18:07:00 +02:00
|
|
|
),
|
|
|
|
],
|
2022-08-09 01:01:06 +02:00
|
|
|
),
|
2022-08-02 10:33:46 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2022-08-15 11:55:17 +02:00
|
|
|
|
|
|
|
String _getAppSelection() {
|
2022-08-18 16:33:33 +02:00
|
|
|
String name = locator<PatcherViewModel>().selectedApp!.name;
|
|
|
|
String version = locator<PatcherViewModel>().selectedApp!.version;
|
2022-08-15 11:55:17 +02:00
|
|
|
return '$name (v$version)';
|
|
|
|
}
|
2022-08-02 10:33:46 +02:00
|
|
|
}
|