2022-11-12 16:55:33 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2024-02-12 00:22:25 +01:00
|
|
|
import 'package:revanced_manager/gen/strings.g.dart';
|
2023-08-06 07:10:57 +02:00
|
|
|
import 'package:revanced_manager/ui/views/patcher/patcher_viewmodel.dart';
|
2023-06-23 15:37:23 +02:00
|
|
|
import 'package:revanced_manager/ui/views/patches_selector/patches_selector_viewmodel.dart';
|
2022-11-12 16:55:33 +01:00
|
|
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
2024-01-14 23:29:24 +01:00
|
|
|
import 'package:revanced_manager/ui/widgets/shared/haptics/haptic_switch_list_tile.dart';
|
2023-08-06 07:10:57 +02:00
|
|
|
import 'package:revanced_manager/utils/check_for_supported_patch.dart';
|
2022-11-12 16:55:33 +01:00
|
|
|
|
2023-10-15 11:56:02 +02:00
|
|
|
class SVersionCompatibilityCheck extends StatefulWidget {
|
|
|
|
const SVersionCompatibilityCheck({super.key});
|
2022-11-12 16:55:33 +01:00
|
|
|
|
|
|
|
@override
|
2023-12-23 04:47:12 +01:00
|
|
|
State<SVersionCompatibilityCheck> createState() =>
|
|
|
|
_SVersionCompatibilityCheckState();
|
2022-11-12 16:55:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
final _settingsViewModel = SettingsViewModel();
|
2023-08-06 07:10:57 +02:00
|
|
|
final _patchesSelectorViewModel = PatchesSelectorViewModel();
|
|
|
|
final _patcherViewModel = PatcherViewModel();
|
2022-11-12 16:55:33 +01:00
|
|
|
|
2023-12-23 04:47:12 +01:00
|
|
|
class _SVersionCompatibilityCheckState
|
|
|
|
extends State<SVersionCompatibilityCheck> {
|
2022-11-12 16:55:33 +01:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-01-14 23:29:24 +01:00
|
|
|
return HapticSwitchListTile(
|
2023-03-14 15:53:42 +01:00
|
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
2024-02-12 00:22:25 +01:00
|
|
|
title: Text(
|
|
|
|
t.settingsView.versionCompatibilityCheckLabel,
|
|
|
|
style: const TextStyle(
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: FontWeight.w500,
|
2022-11-12 16:55:33 +01:00
|
|
|
),
|
|
|
|
),
|
2024-02-12 00:22:25 +01:00
|
|
|
subtitle: Text(t.settingsView.versionCompatibilityCheckHint),
|
2023-10-15 11:56:02 +02:00
|
|
|
value: _settingsViewModel.isVersionCompatibilityCheckEnabled(),
|
2023-03-14 15:53:42 +01:00
|
|
|
onChanged: (value) {
|
2022-11-12 16:55:33 +01:00
|
|
|
setState(() {
|
2023-10-15 11:56:02 +02:00
|
|
|
_settingsViewModel.useVersionCompatibilityCheck(value);
|
2022-11-12 16:55:33 +01:00
|
|
|
});
|
2023-07-10 14:36:50 +02:00
|
|
|
if (!value) {
|
2023-08-06 07:10:57 +02:00
|
|
|
_patcherViewModel.selectedPatches
|
|
|
|
.removeWhere((patch) => !isPatchSupported(patch));
|
|
|
|
_patchesSelectorViewModel.selectedPatches
|
|
|
|
.removeWhere((patch) => !isPatchSupported(patch));
|
2023-06-23 15:37:23 +02:00
|
|
|
}
|
2022-11-12 16:55:33 +01:00
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|