mirror of
https://github.com/immich-app/immich.git
synced 2025-08-30 23:02:39 -04:00
14 lines
385 B
Dart
14 lines
385 B
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:immich_mobile/presentation/widgets/map/map.widget.dart';
|
|
|
|
@RoutePage()
|
|
class DriftMapPage extends StatelessWidget {
|
|
const DriftMapPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Scaffold(extendBodyBehindAppBar: true, body: DriftMap());
|
|
}
|
|
}
|