mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 10:37:11 -04:00 
			
		
		
		
	* chore: bump dart sdk to 3.8 * chore: make build * make pigeon * chore: format files --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			35 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,
 | |
|         ),
 | |
|       ],
 | |
|     );
 | |
|   }
 | |
| }
 |