mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
ba44fa620f
Co-authored-by: oSumAtrIX <johan.melkonyan1@web.de>
134 lines
5.2 KiB
Dart
134 lines
5.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/models/patch.dart';
|
|
import 'package:revanced_manager/ui/views/patch_options/patch_options_viewmodel.dart';
|
|
import 'package:revanced_manager/ui/widgets/patchesSelectorView/patch_options_fields.dart';
|
|
import 'package:revanced_manager/ui/widgets/shared/custom_material_button.dart';
|
|
import 'package:stacked/stacked.dart';
|
|
|
|
class PatchOptionsView extends StatelessWidget {
|
|
const PatchOptionsView({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ViewModelBuilder<PatchOptionsViewModel>.reactive(
|
|
onViewModelReady: (model) => model.initialize(),
|
|
viewModelBuilder: () => PatchOptionsViewModel(),
|
|
builder: (context, model, child) => GestureDetector(
|
|
onTap: () => FocusScope.of(context).unfocus(),
|
|
child: Scaffold(
|
|
floatingActionButton: FloatingActionButton.extended(
|
|
onPressed: () async {
|
|
final bool saved = model.saveOptions(context);
|
|
if (saved && context.mounted) {
|
|
Navigator.pop(context);
|
|
}
|
|
},
|
|
label: I18nText('patchOptionsView.saveOptions'),
|
|
icon: const Icon(Icons.save),
|
|
),
|
|
body: CustomScrollView(
|
|
slivers: <Widget>[
|
|
SliverAppBar(
|
|
title: I18nText(
|
|
'patchOptionsView.viewTitle',
|
|
child: Text(
|
|
'',
|
|
style: GoogleFonts.inter(
|
|
color: Theme.of(context).textTheme.titleLarge!.color,
|
|
),
|
|
),
|
|
),
|
|
actions: [
|
|
IconButton(
|
|
onPressed: () {
|
|
model.resetOptions();
|
|
},
|
|
icon: const Icon(
|
|
Icons.history,
|
|
),
|
|
tooltip: FlutterI18n.translate(
|
|
context,
|
|
'patchOptionsView.resetOptionsTooltip',
|
|
),
|
|
),
|
|
],
|
|
),
|
|
SliverToBoxAdapter(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(8.0),
|
|
child: Column(
|
|
children: [
|
|
for (final Option option in model.visibleOptions)
|
|
if (option.valueType == 'String' ||
|
|
option.valueType == 'Int')
|
|
IntAndStringPatchOption(
|
|
patchOption: option,
|
|
removeOption: (option) {
|
|
model.removeOption(option);
|
|
},
|
|
onChanged: (value, option) {
|
|
model.modifyOptions(value, option);
|
|
},
|
|
)
|
|
else if (option.valueType == 'Boolean')
|
|
BooleanPatchOption(
|
|
patchOption: option,
|
|
removeOption: (option) {
|
|
model.removeOption(option);
|
|
},
|
|
onChanged: (value, option) {
|
|
model.modifyOptions(value, option);
|
|
},
|
|
)
|
|
else if (option.valueType ==
|
|
'StringArray' ||
|
|
option.valueType == 'IntArray' ||
|
|
option.valueType == 'LongArray')
|
|
IntStringLongListPatchOption(
|
|
patchOption: option,
|
|
removeOption: (option) {
|
|
model.removeOption(option);
|
|
},
|
|
onChanged: (value, option) {
|
|
model.modifyOptions(value, option);
|
|
},
|
|
)
|
|
else
|
|
UnsupportedPatchOption(
|
|
patchOption: option,
|
|
),
|
|
if (model.visibleOptions.length !=
|
|
model.options.length) ...[
|
|
const SizedBox(
|
|
height: 8,
|
|
),
|
|
CustomMaterialButton(
|
|
onPressed: () {
|
|
model.showAddOptionDialog(context);
|
|
},
|
|
label: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
const Icon(Icons.add),
|
|
I18nText('patchOptionsView.addOptions'),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
const SizedBox(
|
|
height: 80,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|