refactor: Better names for widgets.

This commit is contained in:
Aunali321
2022-08-01 23:45:55 +05:30
parent 87192e49c6
commit 48a65872ea
5 changed files with 21 additions and 21 deletions

View File

@@ -0,0 +1,59 @@
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:revanced_manager_flutter/ui/widgets/application_item.dart';
class InstalledAppsCard extends StatelessWidget {
const InstalledAppsCard({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12),
color: const Color(0xff1B222B),
),
padding: const EdgeInsets.symmetric(vertical: 18, horizontal: 20),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start,
children: [
Text(
"Total Installed(3)",
style: GoogleFonts.inter(
fontSize: 16,
color: const Color(0xff7792BA),
fontWeight: FontWeight.w500,
),
),
ApplicationItem(
asset: "lib/assets/images/revanced.svg",
name: "ReVanced",
releaseDate: "2 days ago",
onPressed: () {},
),
Text(
"Changelog",
style: GoogleFonts.roboto(
color: const Color(0xff8691A0),
fontWeight: FontWeight.w700,
),
),
const SizedBox(height: 4),
Text(
"fix: we made the player even worse (you love)",
style: GoogleFonts.roboto(
color: const Color(0xff8691A0),
),
),
const SizedBox(height: 4),
Text(
"chore: guhhughghu",
style: GoogleFonts.roboto(
color: const Color(0xff8691A0),
),
),
],
),
);
}
}