Skip to content

Commit

Permalink
fix: Add haptics to save last APK switch (#2133)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminHalko committed Aug 11, 2024
1 parent cb722f2 commit e063b3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/ui/widgets/settingsView/settings_last_patched_app.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
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});
Expand All @@ -16,7 +17,7 @@ class _SLastPatchedAppState
extends State<SLastPatchedApp> {
@override
Widget build(BuildContext context) {
return SwitchListTile(
return HapticSwitchListTile(
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
title: Text(
t.settingsView.lastPatchedAppLabel,
Expand Down

0 comments on commit e063b3d

Please sign in to comment.