mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 19:08:49 -07:00
cb391342d7
* feat(mobile): map page - add map view * map: add map-markers * feat(map): add relative date filter * fix: do not let users scroll past map bounds * fix: fetch relative date from store to state on init * feat(mobile):re-fetch markers only on filter change * feat(mobile) - asset bottom sheet in map page * feat(mobile): display markers based on bottom sheet scroll * fix: exif-bottom-sheet - rebase conflict * feat(mobile): map-view - strongly typed map page events * feat(map): zoom to asset * chore: dart analyzer fixes * map-page move attribution to top-right * feat(mobile): map view - asset selection handling * feat(mobile): map-view display map in places row * fix: make asset marker icon responsive * optimise map page rebuilds * refactor(mobile): map page * feat(mobile): map-view: Go to location * map-view(mobile): minor refactor * fix(mobile): Handle invalid coords gracefully * small styling --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
31 lines
1.1 KiB
Dart
31 lines
1.1 KiB
Dart
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:geolocator/geolocator.dart';
|
|
import 'package:immich_mobile/shared/ui/confirm_dialog.dart';
|
|
|
|
class LocationServiceDisabledDialog extends ConfirmDialog {
|
|
LocationServiceDisabledDialog({Key? key})
|
|
: super(
|
|
key: key,
|
|
title: 'map_location_service_disabled_title'.tr(),
|
|
content: 'map_location_service_disabled_content'.tr(),
|
|
cancel: 'map_location_dialog_cancel'.tr(),
|
|
ok: 'map_location_dialog_yes'.tr(),
|
|
onOk: () async {
|
|
await Geolocator.openLocationSettings();
|
|
},
|
|
);
|
|
}
|
|
|
|
class LocationPermissionDisabledDialog extends ConfirmDialog {
|
|
LocationPermissionDisabledDialog({Key? key})
|
|
: super(
|
|
key: key,
|
|
title: 'map_no_location_permission_title'.tr(),
|
|
content: 'map_no_location_permission_content'.tr(),
|
|
cancel: 'map_location_dialog_cancel'.tr(),
|
|
ok: 'map_location_dialog_yes'.tr(),
|
|
onOk: () {},
|
|
);
|
|
}
|