mirror of
https://github.com/immich-app/immich.git
synced 2024-12-20 00:38:24 +02:00
7489db9481
* refactor(mobile): app settings * Font size * refactor(mobile): backup settings ui (#7771) * refactor: SettingsButtonListTile * refactor: Backup settings to App settings --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> * fix: invalidate appsettingsprovider on timeline setting change * styling --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
28 lines
720 B
Dart
28 lines
720 B
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:immich_mobile/modules/settings/ui/backup_settings/backup_settings.dart';
|
|
|
|
@RoutePage()
|
|
class BackupOptionsPage extends StatelessWidget {
|
|
const BackupOptionsPage({super.key});
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
elevation: 0,
|
|
title: const Text(
|
|
"Backup options",
|
|
),
|
|
leading: IconButton(
|
|
onPressed: () => context.popRoute(true),
|
|
splashRadius: 24,
|
|
icon: const Icon(
|
|
Icons.arrow_back_ios_rounded,
|
|
),
|
|
),
|
|
),
|
|
body: const BackupSettings(),
|
|
);
|
|
}
|
|
}
|