mirror of
https://github.com/immich-app/immich.git
synced 2024-11-18 03:19:01 -07:00
e9c9b7a3e2
* adds notification handling logic * notification on background updates for iOS * fixed regression where i accidentally removed load translations from the background sync * fixed ios translations --------- Co-authored-by: Marty Fuhry <marty@fuhry.farm> Co-authored-by: Alex <alex.tran1502@gmail.com>
51 lines
1.6 KiB
Dart
51 lines
1.6 KiB
Dart
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/modules/settings/ui/asset_list_settings/asset_list_settings.dart';
|
|
import 'package:immich_mobile/modules/settings/ui/image_viewer_quality_setting/image_viewer_quality_setting.dart';
|
|
import 'package:immich_mobile/modules/settings/ui/notification_setting/notification_setting.dart';
|
|
import 'package:immich_mobile/modules/settings/ui/theme_setting/theme_setting.dart';
|
|
|
|
class SettingsPage extends HookConsumerWidget {
|
|
const SettingsPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
leading: IconButton(
|
|
iconSize: 20,
|
|
splashRadius: 24,
|
|
onPressed: () {
|
|
Navigator.pop(context);
|
|
},
|
|
icon: const Icon(Icons.arrow_back_ios_new_rounded),
|
|
),
|
|
automaticallyImplyLeading: false,
|
|
centerTitle: false,
|
|
title: const Text(
|
|
'setting_pages_app_bar_settings',
|
|
style: TextStyle(
|
|
fontSize: 16,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
).tr(),
|
|
),
|
|
body: ListView(
|
|
children: [
|
|
...ListTile.divideTiles(
|
|
context: context,
|
|
tiles: [
|
|
const ImageViewerQualitySetting(),
|
|
const ThemeSetting(),
|
|
const AssetListSettings(),
|
|
const NotificationSetting(),
|
|
//const ExperimentalSettings(),
|
|
],
|
|
).toList(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|