fix marker rendering & modernize riding widgets for dark mode - 2026-04-11

This commit is contained in:
Hamza-Ayed
2026-04-11 01:14:09 +03:00
parent 3f03f25142
commit 454276d1e0
88 changed files with 50376 additions and 23310 deletions

View File

@@ -1,3 +1,4 @@
import 'package:Intaleq/print.dart';
import 'dart:async';
import 'package:app_links/app_links.dart';
import 'package:get/get.dart';
@@ -18,7 +19,7 @@ class DeepLinkController extends GetxController {
Future<void> initDeepLinks() async {
// الاستماع للروابط والتطبيق يعمل في الخلفية
_linkSubscription = _appLinks.uriLinkStream.listen((uri) {
print('🔗 Received deep link (Stream): $uri');
Log.print('🔗 Received deep link (Stream): $uri');
rawDeepLink.value = uri.toString();
});
@@ -26,11 +27,11 @@ class DeepLinkController extends GetxController {
try {
final initialUri = await _appLinks.getInitialLink();
if (initialUri != null) {
print('🔗 Received initial deep link (Cold Start): $initialUri');
Log.print('🔗 Received initial deep link (Cold Start): $initialUri');
rawDeepLink.value = initialUri.toString();
}
} catch (e) {
print('Error getting initial link: $e');
Log.print('Error getting initial link: $e');
}
}
@@ -39,4 +40,4 @@ class DeepLinkController extends GetxController {
_linkSubscription?.cancel();
super.onClose();
}
}
}

View File

@@ -1,3 +1,4 @@
import 'package:Intaleq/print.dart';
import 'dart:io';
import 'dart:convert';
import 'package:live_activities/live_activities.dart';
@@ -41,7 +42,7 @@ class IosLiveActivityService {
activityModel,
);
} catch (e) {
print("❌ Live Activity Start Error: $e");
Log.print("❌ Live Activity Start Error: $e");
}
}
@@ -70,4 +71,4 @@ class IosLiveActivityService {
await _liveActivitiesPlugin.endActivity(_activityId!);
_activityId = null;
}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -129,9 +129,9 @@ ${'Download the Intaleq app now and enjoy your ride!'.tr}
// **IMPROVEMENT**: Provide feedback if some contacts were filtered out.
if (contactsWithPhones < totalContactsOnDevice) {
Get.snackbar('Contacts Loaded'.tr,
'${'Showing'.tr} $contactsWithPhones ${'of'.tr} $totalContactsOnDevice ${'contacts. Others were hidden because they don\'t have a phone number.'.tr}',
snackPosition: SnackPosition.BOTTOM);
// Get.snackbar('Contacts Loaded'.tr,
// '${'Showing'.tr} $contactsWithPhones ${'of'.tr} $totalContactsOnDevice ${'contacts. Others were hidden because they don\'t have a phone number.'.tr}',
// snackPosition: SnackPosition.BOTTOM);
}
} else {
Get.snackbar('No contacts found'.tr,

View File

@@ -1,3 +1,4 @@
import 'package:Intaleq/print.dart';
import 'dart:async';
import 'dart:math';
import 'package:Intaleq/controller/functions/crud.dart';
@@ -169,7 +170,7 @@ class SplashScreenController extends GetxController
box.write(BoxName.packagInfo, info.version);
update();
} catch (e) {
print("Could not get package info: $e");
Log.print("Could not get package info: $e");
}
}
@@ -225,4 +226,4 @@ class SplashScreenController extends GetxController
_glowController.dispose();
super.onClose();
}
}
}