revanced-manager/lib/ui/widgets/appSelectorView/installed_app_item.dart

65 lines
1.8 KiB
Dart
Raw Normal View History

2022-08-07 02:13:27 +02:00
import 'dart:typed_data';
2022-08-02 11:19:14 +02:00
import 'package:flutter/material.dart';
import 'package:revanced_manager/ui/widgets/shared/custom_card.dart';
2022-08-02 11:19:14 +02:00
2022-08-02 12:26:37 +02:00
class InstalledAppItem extends StatefulWidget {
2022-08-02 11:19:14 +02:00
final String name;
final String pkgName;
2022-08-07 02:13:27 +02:00
final Uint8List icon;
2022-08-02 11:19:14 +02:00
2022-08-07 02:13:27 +02:00
const InstalledAppItem({
2022-08-02 11:19:14 +02:00
Key? key,
required this.name,
required this.pkgName,
2022-08-07 02:13:27 +02:00
required this.icon,
2022-08-02 11:19:14 +02:00
}) : super(key: key);
2022-08-02 12:26:37 +02:00
@override
State<InstalledAppItem> createState() => _InstalledAppItemState();
}
class _InstalledAppItemState extends State<InstalledAppItem> {
2022-08-02 11:19:14 +02:00
@override
Widget build(BuildContext context) {
2022-08-09 01:01:06 +02:00
return Padding(
padding: const EdgeInsets.symmetric(vertical: 4.0),
child: CustomCard(
2022-08-09 01:01:06 +02:00
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
2022-08-09 01:01:06 +02:00
Container(
width: 48,
height: 48,
padding: const EdgeInsets.symmetric(vertical: 4.0),
alignment: Alignment.center,
child: CircleAvatar(
backgroundColor: Colors.transparent,
2022-08-09 01:01:06 +02:00
child: Image.memory(widget.icon),
2022-08-07 02:13:27 +02:00
),
2022-08-09 01:01:06 +02:00
),
const SizedBox(width: 12),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
2022-08-09 01:01:06 +02:00
Text(
widget.name,
maxLines: 2,
overflow: TextOverflow.visible,
style: const TextStyle(
2022-08-09 01:01:06 +02:00
fontSize: 16,
fontWeight: FontWeight.w500,
2022-08-02 12:26:37 +02:00
),
2022-08-09 01:01:06 +02:00
),
const SizedBox(height: 4),
Text(widget.pkgName),
2022-08-09 01:01:06 +02:00
],
2022-08-02 12:26:37 +02:00
),
2022-08-09 01:01:06 +02:00
),
],
2022-08-02 11:19:14 +02:00
),
),
);
}
}