todos-contra-el-fuego-mobile/lib/customMoment.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

74 lines
2.2 KiB
Dart

// Copyright (c) 2016, rinukkusu. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.
import 'generated/i18n.dart';
import 'package:flutter/material.dart';
class Moment {
late DateTime _date;
Moment.now() {
_date = new DateTime.now();
}
Moment.fromDate(DateTime date) {
_date = date;
}
Moment.fromMillisecondsSinceEpoch(int millisecondsSinceEpoch,
{bool isUtc = false}) {
_date = new DateTime.fromMillisecondsSinceEpoch(millisecondsSinceEpoch,
isUtc: isUtc);
}
static Moment parse(String date) {
return new Moment.fromDate(DateTime.parse(date));
}
String toString() {
return _date.toString();
}
String fromNow(BuildContext context, [bool withoutPrefixOrSuffix = false]) {
return from(context, new DateTime.now(), withoutPrefixOrSuffix);
}
String from(BuildContext context, DateTime date,
[bool withoutPrefixOrSuffix = false]) {
Duration diff = date.difference(_date);
String timeString = "";
if (diff.inSeconds.abs() < 45)
timeString = S.of(context).aF3wSeconds;
else if (diff.inMinutes.abs() < 2)
timeString = S.of(context).aMinute;
else if (diff.inMinutes.abs() < 45)
timeString = S.of(context).inMinutes(diff.inMinutes.abs().toString());
else if (diff.inHours.abs() < 2)
timeString = S.of(context).anHour;
else if (diff.inHours.abs() < 22)
timeString = S.of(context).inHours(diff.inHours.abs().toString());
else if (diff.inDays.abs() < 2)
timeString = S.of(context).aDay;
else if (diff.inDays.abs() < 26)
timeString = S.of(context).inDays(diff.inDays.abs().toString());
else if (diff.inDays.abs() < 60)
timeString = S.of(context).aMonth;
else if (diff.inDays.abs() < 320)
timeString = S.of(context).inMonths((diff.inDays.abs() ~/ 30).toString());
else if (diff.inDays.abs() < 547)
timeString = S.of(context).aYear;
else
timeString = S.of(context).inYears((diff.inDays.abs() ~/ 356).toString());
if (!withoutPrefixOrSuffix) {
if (diff.isNegative)
timeString = S.of(context).somethingAgo(timeString);
else
timeString = S.of(context).inSomething(timeString);
}
return timeString;
}
}