revanced-manager/lib/ui/widgets/app_selector_card.dart

70 lines
2.1 KiB
Dart
Raw Normal View History

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-09 01:01:06 +02:00
import 'package:revanced_manager/services/patcher_api.dart';
import 'package:revanced_manager/ui/views/app_selector/app_selector_viewmodel.dart';
2022-08-02 10:33:46 +02:00
class AppSelectorCard extends StatelessWidget {
final Function()? onPressed;
2022-08-11 22:17:10 +02:00
final Color? color;
2022-08-09 01:01:06 +02:00
AppSelectorCard({
2022-08-02 10:33:46 +02:00
Key? key,
this.onPressed,
2022-08-11 22:17:10 +02:00
this.color = const Color(0xff1B222B),
2022-08-02 10:33:46 +02:00
}) : super(key: key);
final PatcherAPI patcherAPI = locator<PatcherAPI>();
2022-08-09 01:01:06 +02:00
2022-08-02 10:33:46 +02:00
@override
Widget build(BuildContext context) {
return GestureDetector(
onTap: onPressed,
child: Container(
width: double.infinity,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12),
2022-08-11 22:17:10 +02:00
color: color,
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(
'appSelectorCard.widgetTitle',
child: Text(
'',
style: GoogleFonts.roboto(
fontSize: 18,
fontWeight: FontWeight.w500,
),
2022-08-02 10:33:46 +02:00
),
),
const SizedBox(height: 10),
locator<AppSelectorViewModel>().selectedApp != null
2022-08-09 01:01:06 +02:00
? Text(
2022-08-15 11:55:17 +02:00
_getAppSelection(),
2022-08-09 01:01:06 +02:00
style: robotoTextStyle,
)
: I18nText(
'appSelectorCard.widgetSubtitle',
child: Text(
'',
style: robotoTextStyle,
),
),
2022-08-02 10:33:46 +02:00
],
),
),
);
}
2022-08-15 11:55:17 +02:00
String _getAppSelection() {
String name = locator<AppSelectorViewModel>().selectedApp!.name;
String version = locator<AppSelectorViewModel>().selectedApp!.version;
return '$name (v$version)';
}
2022-08-02 10:33:46 +02:00
}