mirror of
https://github.com/immich-app/immich.git
synced 2025-08-11 09:16:31 -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>
26 lines
770 B
Dart
26 lines
770 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(),
|
|
);
|
|
}
|
|
}
|