mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 17:17:49 +01:00
106 lines
4.2 KiB
Dart
106 lines
4.2 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/ui/views/installer/installer_viewmodel.dart';
|
|
import 'package:revanced_manager/ui/widgets/installerView/custom_material_button.dart';
|
|
import 'package:revanced_manager/ui/widgets/shared/custom_card.dart';
|
|
import 'package:revanced_manager/ui/widgets/shared/custom_sliver_app_bar.dart';
|
|
import 'package:stacked/stacked.dart';
|
|
|
|
class InstallerView extends StatelessWidget {
|
|
const InstallerView({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ViewModelBuilder<InstallerViewModel>.reactive(
|
|
onModelReady: (model) => model.initialize(context),
|
|
viewModelBuilder: () => InstallerViewModel(),
|
|
builder: (context, model, child) => WillPopScope(
|
|
child: Scaffold(
|
|
body: CustomScrollView(
|
|
controller: model.scrollController,
|
|
slivers: <Widget>[
|
|
CustomSliverAppBar(
|
|
title: Text(
|
|
model.headerLogs,
|
|
style: GoogleFonts.inter(
|
|
color: Theme.of(context).textTheme.headline6!.color,
|
|
),
|
|
),
|
|
bottom: PreferredSize(
|
|
preferredSize: const Size(double.infinity, 1.0),
|
|
child: LinearProgressIndicator(
|
|
color: Theme.of(context).colorScheme.primary,
|
|
backgroundColor: Colors.white,
|
|
value: model.progress,
|
|
),
|
|
),
|
|
),
|
|
SliverPadding(
|
|
padding: const EdgeInsets.all(20.0),
|
|
sliver: SliverList(
|
|
delegate: SliverChildListDelegate.fixed(
|
|
<Widget>[
|
|
CustomCard(
|
|
child: Text(
|
|
model.logs,
|
|
style: GoogleFonts.jetBrainsMono(
|
|
fontSize: 13,
|
|
height: 1.5,
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.symmetric(
|
|
vertical: 16,
|
|
horizontal: 0,
|
|
),
|
|
child: Visibility(
|
|
visible: !model.isPatching,
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
children: <Widget>[
|
|
CustomMaterialButton(
|
|
label: I18nText('installerView.shareButton'),
|
|
isFilled: false,
|
|
onPressed: () => model.shareResult(),
|
|
),
|
|
const SizedBox(width: 16),
|
|
CustomMaterialButton(
|
|
label: model.isInstalled
|
|
? I18nText('installerView.openButton')
|
|
: I18nText('installerView.installButton'),
|
|
isFilled: true,
|
|
isExpanded: true,
|
|
onPressed: () {
|
|
if (model.isInstalled) {
|
|
model.openApp();
|
|
model.cleanPatcher();
|
|
Navigator.of(context).pop();
|
|
} else {
|
|
model.installResult();
|
|
}
|
|
},
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
onWillPop: () async {
|
|
if (!model.isPatching) {
|
|
model.cleanPatcher();
|
|
Navigator.of(context).pop();
|
|
}
|
|
return false;
|
|
},
|
|
),
|
|
);
|
|
}
|
|
}
|