mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-30 18:35:00 -04: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/services/app_settings.service.dart';
 | |
| import 'package:immich_mobile/widgets/settings/settings_sub_title.dart';
 | |
| import 'package:immich_mobile/widgets/settings/settings_switch_list_tile.dart';
 | |
| import 'package:immich_mobile/utils/hooks/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,
 | |
|         ),
 | |
|       ],
 | |
|     );
 | |
|   }
 | |
| }
 |