mirror of
https://github.com/immich-app/immich.git
synced 2024-12-29 11:24:37 +02:00
39 lines
1.3 KiB
Dart
39 lines
1.3 KiB
Dart
|
import 'package:easy_localization/easy_localization.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
||
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||
|
import 'package:immich_mobile/modules/settings/services/app_settings.service.dart';
|
||
|
import 'package:immich_mobile/modules/settings/ui/settings_sub_title.dart';
|
||
|
import 'package:immich_mobile/modules/settings/ui/settings_switch_list_tile.dart';
|
||
|
import 'package:immich_mobile/modules/settings/utils/app_settings_update_hook.dart';
|
||
|
|
||
|
class HapticSetting extends HookConsumerWidget {
|
||
|
const HapticSetting({
|
||
|
super.key,
|
||
|
});
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context, WidgetRef ref) {
|
||
|
final hapticFeedbackSetting =
|
||
|
useAppSettingsState(AppSettingsEnum.enableHapticFeedback);
|
||
|
final isHapticFeedbackEnabled =
|
||
|
useValueNotifier(hapticFeedbackSetting.value);
|
||
|
|
||
|
onHapticFeedbackChange(bool isEnabled) {
|
||
|
hapticFeedbackSetting.value = isEnabled;
|
||
|
}
|
||
|
|
||
|
return Column(
|
||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||
|
children: [
|
||
|
SettingsSubTitle(title: "haptic_feedback_title".tr()),
|
||
|
SettingsSwitchListTile(
|
||
|
valueNotifier: isHapticFeedbackEnabled,
|
||
|
title: 'haptic_feedback_switch'.tr(),
|
||
|
onChanged: onHapticFeedbackChange,
|
||
|
),
|
||
|
],
|
||
|
);
|
||
|
}
|
||
|
}
|