mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 17:17:49 +01:00
106 lines
4 KiB
Dart
106 lines
4 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:revanced_manager/app/app.locator.dart';
|
|
import 'package:revanced_manager/theme.dart';
|
|
import 'package:revanced_manager/ui/views/home/home_viewmodel.dart';
|
|
import 'package:revanced_manager/ui/widgets/available_updates_card.dart';
|
|
import 'package:revanced_manager/ui/widgets/dashboard_raw_chip.dart';
|
|
import 'package:revanced_manager/ui/widgets/installed_apps_card.dart';
|
|
import 'package:revanced_manager/ui/widgets/latest_commit_card.dart';
|
|
import 'package:stacked/stacked.dart';
|
|
|
|
class HomeView extends StatelessWidget {
|
|
const HomeView({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ViewModelBuilder<HomeViewModel>.reactive(
|
|
disposeViewModel: false,
|
|
fireOnModelReadyOnce: true,
|
|
onModelReady: (model) => model.initialize(),
|
|
viewModelBuilder: () => locator<HomeViewModel>(),
|
|
builder: (context, model, child) => Scaffold(
|
|
body: SafeArea(
|
|
child: SingleChildScrollView(
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
const SizedBox(height: 60),
|
|
I18nText(
|
|
'homeView.widgetTitle',
|
|
child: Text(
|
|
'',
|
|
style: GoogleFonts.inter(
|
|
fontSize: 28,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 23),
|
|
I18nText(
|
|
'homeView.updatesSubtitle',
|
|
child: Text(
|
|
'',
|
|
style: GoogleFonts.inter(
|
|
fontSize: 20,
|
|
fontWeight: FontWeight.w500,
|
|
color: isDark
|
|
? const Color(0xffD1E1FA)
|
|
: const Color(0xff384E6E),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 10),
|
|
LatestCommitCard(
|
|
onPressed: () => model.updateManager(context),
|
|
color: Theme.of(context).colorScheme.primary,
|
|
),
|
|
const SizedBox(height: 23),
|
|
I18nText(
|
|
'homeView.patchedSubtitle',
|
|
child: Text(
|
|
'',
|
|
style: GoogleFonts.inter(
|
|
fontSize: 20,
|
|
color: isDark
|
|
? const Color(0xffD1E1FA)
|
|
: const Color(0xff384E6E),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 8),
|
|
Row(
|
|
children: [
|
|
DashboardChip(
|
|
label: "homeView.updatesAvailable",
|
|
isSelected: model.showUpdatableApps,
|
|
onSelected: (value) {
|
|
model.toggleUpdatableApps(true);
|
|
},
|
|
),
|
|
const SizedBox(width: 10),
|
|
DashboardChip(
|
|
label: "homeView.installed",
|
|
isSelected: !model.showUpdatableApps,
|
|
onSelected: (value) {
|
|
model.toggleUpdatableApps(false);
|
|
},
|
|
)
|
|
],
|
|
),
|
|
const SizedBox(height: 14),
|
|
model.showUpdatableApps
|
|
? AvailableUpdatesCard()
|
|
: InstalledAppsCard()
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|