Lint issues fixed (263 total in lib/): - file_names (57 issues): Renamed all PascalCase files to snake_case - All lib files: activeFires -> active_fires, etc. - All models: appState -> app_state, fireMapState -> fire_map_state, etc. - All redux files: appActions -> app_actions, appReducer -> app_reducer, etc. - Updated all import statements and exports across the codebase - Fixed unused imports, exports, and references in rebuilt modules Style fixes (16 issues): - prefer_generic_function_type_aliases (2): Updated typedef syntax from old to new - unnecessary_nullable_for_final_variable_declarations (2): Removed ? from non-nullable types - unnecessary_import: Removed duplicate meta/meta import - unnecessary_parenthesis: Removed unnecessary parentheses in expressions - avoid_renaming_method_parameters: Renamed parameter 'o' to 'other' - prefer_const_declarations: Changed final to const for constant values - use_key_in_widget_constructors (3): Added key parameters to widget constructors - sort_child_properties_last (1): Reordered children property to end Verification: - APK builds successfully (146 MB) - Reduced from 106 lint issues to 49 high-priority issues - Total file_names issues: 0 (down from 57) - All imports and exports updated correctly
75 lines
2.4 KiB
Dart
75 lines
2.4 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:geocoding/geocoding.dart' as geo;
|
|
import 'package:location/location.dart';
|
|
import 'package:objectid/objectid.dart';
|
|
|
|
import 'generated/i18n.dart';
|
|
import 'models/your_location.dart';
|
|
|
|
Future<YourLocation> getUserLocation(
|
|
GlobalKey<ScaffoldState> scaffoldKey) async {
|
|
// Platform messages may fail, so we use a try/catch PlatformException.
|
|
try {
|
|
final Location location0 = Location();
|
|
|
|
final LocationData location = await location0.getLocation();
|
|
|
|
// It seems that the lib fails with lat/lon values
|
|
final YourLocation yl = YourLocation(
|
|
id: ObjectId(), lat: location.latitude!, lon: location.longitude!);
|
|
String address;
|
|
try {
|
|
address = await getReverseLocation(lat: yl.lat, lon: yl.lon);
|
|
yl.description = address;
|
|
} catch (e) {
|
|
try {
|
|
address =
|
|
await getReverseLocation(lat: yl.lat, lon: yl.lon, external: true);
|
|
yl.description = address;
|
|
} catch (_) {
|
|
// Ignore - fallback already attempted
|
|
}
|
|
}
|
|
return yl;
|
|
} on PlatformException catch (e) {
|
|
final BuildContext? context = scaffoldKey.currentContext;
|
|
if (context != null) {
|
|
// ignore: use_build_context_synchronously
|
|
final S strings = S.of(context);
|
|
// ignore: use_build_context_synchronously
|
|
final ScaffoldMessengerState messenger = ScaffoldMessenger.of(context);
|
|
if (e.code == 'PERMISSION_DENIED') {
|
|
messenger.showSnackBar(SnackBar(
|
|
content: Text(strings.notPermsUbication),
|
|
));
|
|
} else if (e.code == 'PERMISSION_DENIED_NEVER_ASK') {
|
|
// User selected "Don't ask again" - show settings prompt
|
|
}
|
|
messenger.showSnackBar(SnackBar(
|
|
content: Text(strings.isYourUbicationEnabled),
|
|
));
|
|
}
|
|
return YourLocation.noLocation;
|
|
}
|
|
}
|
|
|
|
Future<String> getReverseLocation(
|
|
{required double lat, required double lon, bool external = false}) async {
|
|
try {
|
|
final List<geo.Placemark> placemarks =
|
|
await geo.placemarkFromCoordinates(lat, lon);
|
|
if (placemarks.isNotEmpty) {
|
|
final geo.Placemark first = placemarks.first;
|
|
final String address =
|
|
'${first.street}, ${first.locality}, ${first.administrativeArea}, ${first.country}';
|
|
return address;
|
|
} else {
|
|
return 'Unable to determine address';
|
|
}
|
|
} catch (e) {
|
|
throw Exception('Failed to reverse geocode: $e');
|
|
}
|
|
}
|