mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 09:07:47 +01:00
115 lines
3.5 KiB
Dart
115 lines
3.5 KiB
Dart
import 'dart:typed_data';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:revanced_manager/constants.dart';
|
|
import 'package:revanced_manager/theme.dart';
|
|
import 'package:revanced_manager/ui/widgets/patch_text_button.dart';
|
|
import 'package:expandable/expandable.dart';
|
|
import 'package:timeago/timeago.dart';
|
|
|
|
class ApplicationItem extends StatelessWidget {
|
|
final Uint8List icon;
|
|
final String name;
|
|
final DateTime patchDate;
|
|
final String changelog;
|
|
final bool isUpdatableApp;
|
|
final Function() onPressed;
|
|
|
|
const ApplicationItem({
|
|
Key? key,
|
|
required this.icon,
|
|
required this.name,
|
|
required this.patchDate,
|
|
required this.changelog,
|
|
required this.isUpdatableApp,
|
|
required this.onPressed,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ExpandablePanel(
|
|
theme: const ExpandableThemeData(
|
|
hasIcon: false,
|
|
animationDuration: Duration(milliseconds: 450),
|
|
),
|
|
header: Container(
|
|
height: 60,
|
|
decoration: BoxDecoration(
|
|
borderRadius: const BorderRadius.all(
|
|
Radius.circular(16),
|
|
),
|
|
color: Theme.of(context).colorScheme.primary,
|
|
),
|
|
padding: const EdgeInsets.symmetric(horizontal: 10.0, vertical: 12.0),
|
|
child: Row(
|
|
children: [
|
|
SizedBox(
|
|
width: 60,
|
|
child: Image.memory(
|
|
icon,
|
|
height: 39,
|
|
width: 39,
|
|
),
|
|
),
|
|
const SizedBox(width: 4),
|
|
SizedBox(
|
|
width: MediaQuery.of(context).size.width - 250,
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
name,
|
|
style: GoogleFonts.roboto(
|
|
color: Theme.of(context).colorScheme.secondary,
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
),
|
|
Text(
|
|
format(patchDate, locale: 'en_short'),
|
|
style: robotoTextStyle.copyWith(
|
|
color: Theme.of(context).colorScheme.tertiary,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
const Spacer(),
|
|
isUpdatableApp
|
|
? Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 8.0),
|
|
child: PatchTextButton(
|
|
text: 'applicationItem.patchButton',
|
|
onPressed: onPressed,
|
|
borderColor: isDark
|
|
? const Color(0xff4D5054)
|
|
: const Color.fromRGBO(119, 146, 168, 1),
|
|
),
|
|
)
|
|
: const SizedBox(),
|
|
],
|
|
),
|
|
),
|
|
collapsed: const Text(""),
|
|
expanded: Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: 8.0, horizontal: 16.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
I18nText(
|
|
'applicationItem.changelogLabel',
|
|
child: Text(
|
|
'',
|
|
style: robotoTextStyle.copyWith(fontWeight: FontWeight.w700),
|
|
),
|
|
),
|
|
Text(
|
|
changelog,
|
|
style: robotoTextStyle,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|