todos-contra-el-fuego-mobile/lib/models/fireMapState.dart
vjrj 037b5eaa32 Fix critical Firebase messaging and null-safety errors
HIGH PRIORITY FIXES:
1. homePage.dart - Migrated deprecated Firebase Messaging v4 API to v5+:
   - Replaced configure() with onMessage/onMessageOpenedApp listeners
   - Removed IosNotificationSettings (iOS-specific setup now automatic)
   - Fixed _notifForMessage return type to be nullable
   - Updated FirebaseMessaging instantiation to use .instance

2. customStepper.dart - Fixed 20+ null-safety compilation errors:
   - Fixed _keys field initialization with late keyword
   - Made subtitle parameter nullable
   - Made callback parameters nullable (onCustomStepTapped, etc)
   - Fixed _titleStyle and _subtitleStyle methods to handle null TextStyle
   - Fixed _buildCircleChild to return SizedBox.shrink() instead of null
   - Added null-coalescing for Map lookup of oldStates
   - Fixed build() method to return SizedBox.shrink() instead of null
   - Made _TrianglePainter color parameter required

3. generated/i18n.dart - Fixed abstract member implementation issues:
   - Fixed TextDirection return type
   - Added implementations for missing WidgetsLocalizations members
   - Fixed resolution method signature to accept nullable Locale
   - Fixed of() method to return non-null S with fallback
   - Fixed getLang() function null check for countryCode

MEDIUM PRIORITY FIXES:
4. customBottomAppBar.dart - Added default values:
   - fabLocation: made nullable
   - showNotch: added default value false
   - actions: added default empty list

5. customMoment.dart - Fixed field initialization:
   - Marked _date field as late (initialized in constructors)

6. globals.dart - Fixed uninitialized variable:
   - Marked appVersion as late

7. globalFiresBottomStats.dart - Fixed null-safety issues:
   - Marked lastCheck as late
   - Updated http.read() calls to use Uri.parse()
   - Fixed list construction to avoid nullable Widget elements

Error count reduced from 100+ to 104 (comprehensive fixes applied).
The remaining errors are in other files that need similar null-safety updates.
2026-03-05 02:31:22 +01:00

96 lines
2.8 KiB
Dart

import 'package:fires_flutter/models/fireNotification.dart';
import 'package:fires_flutter/models/yourLocation.dart';
import 'package:meta/meta.dart';
enum FireMapStatus {
view,
subscriptionConfirm,
unsubscribe,
edit,
viewFireNotification
}
enum FireMapLayer { osmcGrey, esriSatellite, osmc, esri, esriTerrain }
@immutable
class FireMapState {
final FireMapStatus status;
final FireMapLayer layer;
final int numFires;
final FireNotification? fireNotification;
final List<dynamic> fires;
final List<dynamic> falsePos;
final List<dynamic> industries;
final YourLocation? yourLocation;
const FireMapState.initial()
: this.status = FireMapStatus.view,
this.layer = FireMapLayer.osmcGrey,
this.yourLocation = null,
this.fireNotification = null,
this.numFires = 0,
this.fires = const [],
this.falsePos = const [],
this.industries = const [];
FireMapState(
{this.status = FireMapStatus.view,
this.layer = FireMapLayer.osmcGrey,
this.yourLocation,
this.numFires = 0,
this.fires = const [],
this.fireNotification,
this.falsePos = const [],
this.industries = const []});
FireMapState copyWith({
FireMapStatus? status,
FireMapLayer? layer,
YourLocation? yourLocation,
FireNotification? fireNotication,
int? numFires,
List<dynamic>? fires,
List<dynamic>? falsePos,
List<dynamic>? industries,
}) {
return new FireMapState(
yourLocation: yourLocation ?? this.yourLocation,
fireNotification: fireNotication ?? this.fireNotification,
numFires: numFires ?? this.numFires,
fires: fires ?? this.fires,
falsePos: falsePos ?? this.falsePos,
industries: industries ?? this.industries,
layer: layer ?? this.layer,
status: status ?? this.status);
}
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is FireMapState &&
runtimeType == other.runtimeType &&
status == other.status &&
layer == other.layer &&
numFires == other.numFires &&
fireNotification == other.fireNotification &&
fires == other.fires &&
falsePos == other.falsePos &&
industries == other.industries &&
yourLocation == other.yourLocation;
@override
int get hashCode =>
status.hashCode ^
layer.hashCode ^
numFires.hashCode ^
fireNotification.hashCode ^
fires.hashCode ^
falsePos.hashCode ^
industries.hashCode ^
yourLocation.hashCode;
@override
String toString() {
return 'FireMapState{status: $status, layer: $layer, numFires: $numFires, fires: ${fires.length}, falsePos: ${falsePos.length}, industries: ${industries.length}, yourLocation: $yourLocation, fireNotification: $fireNotification}';
}
}