mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 12:05:48 -05:00
13 lines
296 B
Dart
13 lines
296 B
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
@RoutePage()
|
|
class LogsPage extends StatelessWidget {
|
|
const LogsPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Scaffold(body: Center(child: Text("Logs Page")));
|
|
}
|
|
}
|