2024-06-29 14:38:00 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:revanced_manager/gen/strings.g.dart';
|
|
|
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
2024-08-11 17:51:18 +02:00
|
|
|
import 'package:revanced_manager/ui/widgets/shared/haptics/haptic_switch_list_tile.dart';
|
2024-06-29 14:38:00 +02:00
|
|
|
|
|
|
|
class SLastPatchedApp extends StatefulWidget {
|
|
|
|
const SLastPatchedApp({super.key});
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<SLastPatchedApp> createState() =>
|
|
|
|
_SLastPatchedAppState();
|
|
|
|
}
|
|
|
|
|
|
|
|
final _settingsViewModel = SettingsViewModel();
|
|
|
|
|
|
|
|
class _SLastPatchedAppState
|
|
|
|
extends State<SLastPatchedApp> {
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-08-11 17:51:18 +02:00
|
|
|
return HapticSwitchListTile(
|
2024-06-29 14:38:00 +02:00
|
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
|
|
title: Text(
|
|
|
|
t.settingsView.lastPatchedAppLabel,
|
|
|
|
style: const TextStyle(
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
subtitle: Text(t.settingsView.lastPatchedAppHint),
|
|
|
|
value: _settingsViewModel.isLastPatchedAppEnabled(),
|
|
|
|
onChanged: (value) {
|
|
|
|
setState(() {
|
|
|
|
_settingsViewModel.useLastPatchedApp(value);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|