diff --git a/mobile/lib/presentation/pages/drift_map.page.dart b/mobile/lib/presentation/pages/drift_map.page.dart index 0555f42452..989bfbd38d 100644 --- a/mobile/lib/presentation/pages/drift_map.page.dart +++ b/mobile/lib/presentation/pages/drift_map.page.dart @@ -10,7 +10,7 @@ class DriftMapPage extends StatelessWidget { Widget build(BuildContext context) { return const Scaffold( extendBodyBehindAppBar: true, - body: DriftMapWithMarker(), + body: DriftMap(), ); } } diff --git a/mobile/lib/presentation/widgets/map/map.widget.dart b/mobile/lib/presentation/widgets/map/map.widget.dart index 1da8c5be4a..78c3f9f46a 100644 --- a/mobile/lib/presentation/widgets/map/map.widget.dart +++ b/mobile/lib/presentation/widgets/map/map.widget.dart @@ -15,14 +15,14 @@ import 'package:immich_mobile/widgets/common/immich_toast.dart'; import 'package:immich_mobile/widgets/map/map_theme_override.dart'; import 'package:maplibre_gl/maplibre_gl.dart'; -class DriftMapWithMarker extends ConsumerStatefulWidget { - const DriftMapWithMarker({super.key}); +class DriftMap extends ConsumerStatefulWidget { + const DriftMap({super.key}); @override - ConsumerState createState() => _DriftMapWithMarkerState(); + ConsumerState createState() => _DriftMapState(); } -class _DriftMapWithMarkerState extends ConsumerState { +class _DriftMapState extends ConsumerState { MapLibreMapController? mapController; bool loadAllMarkers = false;