mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
38 lines
1.1 KiB
Dart
38 lines
1.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:revanced_manager/gen/strings.g.dart';
|
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
|
import 'package:revanced_manager/ui/widgets/shared/haptics/haptic_switch_list_tile.dart';
|
|
|
|
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) {
|
|
return HapticSwitchListTile(
|
|
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);
|
|
});
|
|
},
|
|
);
|
|
}
|
|
}
|