mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 02:27:08 -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>
		
			
				
	
	
		
			16 lines
		
	
	
		
			605 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			605 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:flutter/material.dart';
 | |
| import 'package:immich_mobile/widgets/settings/preference_settings/haptic_setting.dart';
 | |
| import 'package:immich_mobile/widgets/settings/preference_settings/theme_setting.dart';
 | |
| import 'package:immich_mobile/widgets/settings/settings_sub_page_scaffold.dart';
 | |
| 
 | |
| class PreferenceSetting extends StatelessWidget {
 | |
|   const PreferenceSetting({super.key});
 | |
| 
 | |
|   @override
 | |
|   Widget build(BuildContext context) {
 | |
|     const preferenceSettings = [ThemeSetting(), HapticSetting()];
 | |
| 
 | |
|     return const SettingsSubPageScaffold(settings: preferenceSettings, showDivider: true);
 | |
|   }
 | |
| }
 |