mirror of
https://github.com/immich-app/immich.git
synced 2025-07-31 15:08:44 -04:00
* show beta sync stats * show status next to jobs * use drift devtools reset database impl * dcm fixes * fix: hash count * styling --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
30 lines
804 B
Dart
30 lines
804 B
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:immich_mobile/extensions/translate_extensions.dart';
|
|
import 'package:immich_mobile/widgets/settings/beta_sync_settings/beta_sync_settings.dart';
|
|
|
|
@RoutePage()
|
|
class BetaSyncSettingsPage extends StatelessWidget {
|
|
const BetaSyncSettingsPage({
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
elevation: 0,
|
|
title: const Text("beta_sync").t(context: context),
|
|
leading: IconButton(
|
|
onPressed: () => context.maybePop(true),
|
|
splashRadius: 24,
|
|
icon: const Icon(
|
|
Icons.arrow_back_ios_rounded,
|
|
),
|
|
),
|
|
),
|
|
body: const BetaSyncSettings(),
|
|
);
|
|
}
|
|
}
|