mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
106 lines
3.7 KiB
Dart
106 lines
3.7 KiB
Dart
// ignore_for_file: prefer_const_constructors
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_i18n/widgets/I18nText.dart';
|
|
import 'package:revanced_manager/ui/views/settings/settingsFragment/settings_manage_api_url.dart';
|
|
import 'package:revanced_manager/ui/views/settings/settingsFragment/settings_manage_sources.dart';
|
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_auto_update_patches.dart';
|
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_enable_patches_selection.dart';
|
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_experimental_patches.dart';
|
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_experimental_universal_patches.dart';
|
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_section.dart';
|
|
import 'package:revanced_manager/ui/widgets/shared/custom_material_button.dart';
|
|
|
|
final _settingsViewModel = SettingsViewModel();
|
|
|
|
class SAdvancedSection extends StatelessWidget {
|
|
const SAdvancedSection({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SettingsSection(
|
|
title: 'settingsView.advancedSectionTitle',
|
|
children: <Widget>[
|
|
SManageApiUrlUI(),
|
|
SManageSourcesUI(),
|
|
// SManageKeystorePasswordUI(),
|
|
SAutoUpdatePatches(),
|
|
SEnablePatchesSelection(),
|
|
SExperimentalUniversalPatches(),
|
|
SExperimentalPatches(),
|
|
ListTile(
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
title: I18nText(
|
|
'settingsView.regenerateKeystoreLabel',
|
|
child: const Text(
|
|
'',
|
|
style: TextStyle(
|
|
fontSize: 20,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
),
|
|
subtitle: I18nText('settingsView.regenerateKeystoreHint'),
|
|
onTap: () => _showDeleteKeystoreDialog(context),
|
|
),
|
|
ListTile(
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
title: I18nText(
|
|
'settingsView.deleteTempDirLabel',
|
|
child: const Text(
|
|
'',
|
|
style: TextStyle(
|
|
fontSize: 20,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
),
|
|
subtitle: I18nText('settingsView.deleteTempDirHint'),
|
|
onTap: () => _settingsViewModel.deleteTempDir(),
|
|
),
|
|
ListTile(
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
title: I18nText(
|
|
'settingsView.deleteLogsLabel',
|
|
child: const Text(
|
|
'',
|
|
style: TextStyle(
|
|
fontSize: 20,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
),
|
|
subtitle: I18nText('settingsView.deleteLogsHint'),
|
|
onTap: () => _settingsViewModel.deleteLogs(),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
|
|
Future<void> _showDeleteKeystoreDialog(context) {
|
|
return showDialog(
|
|
context: context,
|
|
builder: (context) => AlertDialog(
|
|
title: I18nText('settingsView.regenerateKeystoreDialogTitle'),
|
|
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
|
content: I18nText('settingsView.regenerateKeystoreDialogText'),
|
|
actions: <Widget>[
|
|
CustomMaterialButton(
|
|
isFilled: false,
|
|
label: I18nText('noButton'),
|
|
onPressed: () => Navigator.of(context).pop(),
|
|
),
|
|
CustomMaterialButton(
|
|
label: I18nText('yesButton'),
|
|
onPressed: () => {
|
|
Navigator.of(context).pop(),
|
|
_settingsViewModel.deleteKeystore(),
|
|
},
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|