mirror of
https://github.com/immich-app/immich.git
synced 2025-08-11 09:16:31 -04:00
chore: rename
This commit is contained in:
parent
34786f3d48
commit
c7e745acef
@ -10,7 +10,7 @@ class DriftMapPage extends StatelessWidget {
|
||||
Widget build(BuildContext context) {
|
||||
return const Scaffold(
|
||||
extendBodyBehindAppBar: true,
|
||||
body: DriftMapWithMarker(),
|
||||
body: DriftMap(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -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<DriftMapWithMarker> createState() => _DriftMapWithMarkerState();
|
||||
ConsumerState<DriftMap> createState() => _DriftMapState();
|
||||
}
|
||||
|
||||
class _DriftMapWithMarkerState extends ConsumerState<DriftMapWithMarker> {
|
||||
class _DriftMapState extends ConsumerState<DriftMap> {
|
||||
MapLibreMapController? mapController;
|
||||
bool loadAllMarkers = false;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user