chore: rename

This commit is contained in:
wuzihao051119 2025-07-16 20:02:13 +08:00 committed by mertalev
parent 34786f3d48
commit c7e745acef
No known key found for this signature in database
GPG Key ID: DF6ABC77AAD98C95
2 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@ class DriftMapPage extends StatelessWidget {
Widget build(BuildContext context) { Widget build(BuildContext context) {
return const Scaffold( return const Scaffold(
extendBodyBehindAppBar: true, extendBodyBehindAppBar: true,
body: DriftMapWithMarker(), body: DriftMap(),
); );
} }
} }

View File

@ -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:immich_mobile/widgets/map/map_theme_override.dart';
import 'package:maplibre_gl/maplibre_gl.dart'; import 'package:maplibre_gl/maplibre_gl.dart';
class DriftMapWithMarker extends ConsumerStatefulWidget { class DriftMap extends ConsumerStatefulWidget {
const DriftMapWithMarker({super.key}); const DriftMap({super.key});
@override @override
ConsumerState<DriftMapWithMarker> createState() => _DriftMapWithMarkerState(); ConsumerState<DriftMap> createState() => _DriftMapState();
} }
class _DriftMapWithMarkerState extends ConsumerState<DriftMapWithMarker> { class _DriftMapState extends ConsumerState<DriftMap> {
MapLibreMapController? mapController; MapLibreMapController? mapController;
bool loadAllMarkers = false; bool loadAllMarkers = false;