This commit is contained in:
2026-03-22 01:21:29 +03:00
parent 70c6568a1b
commit 1c3b506d4b
7 changed files with 3 additions and 35 deletions
-1
View File
@@ -127,7 +127,6 @@ class HapticNotifier extends StateNotifier<bool> {
Future<void> toggle(bool value) async {
await HapticService.setEnabled(value);
state = value;
// Give tactile confirmation when turning ON
if (value) HapticFeedback.mediumImpact();
}
}