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 'package:flutter/services.dart';
class WidgetManager {
@@ -7,7 +8,7 @@ class WidgetManager {
try {
await platform.invokeMethod('updateWidget');
} on PlatformException catch (e) {
print("Failed to update widget: '${e.message}'.");
Log.print("Failed to update widget: '${e.message}'.");
}
}
}
@@ -15,4 +16,4 @@ class WidgetManager {
// Example usage:
void updateHomeScreenWidget() {
WidgetManager.updateWidget();
}
}