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 createState() => _SLastPatchedAppState(); } final _settingsViewModel = SettingsViewModel(); class _SLastPatchedAppState extends State { @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); }); }, ); } }