feat: Update project version to 48 and enhance trail color visibility

This commit is contained in:
Janez T
2025-10-30 14:44:07 +01:00
parent 0c5fb5a440
commit d77c60db2a
7 changed files with 146 additions and 156 deletions

View File

@@ -1852,10 +1852,10 @@ class _MapTabState extends State<MapTab> with AutomaticKeepAliveClientMixin {
points: contact.advertHistory
.map((advert) => advert.location)
.toList(),
color: color,
strokeWidth: 2.5, // Thinner than user trail
borderColor: Colors.white.withValues(alpha: 0.3),
borderStrokeWidth: 1.0,
color: color.withValues(alpha: 0.95), // More opaque for better visibility
strokeWidth: 4.5, // Thicker for better visibility on all map backgrounds
borderColor: Colors.white.withValues(alpha: 0.6), // Stronger border contrast
borderStrokeWidth: 2.0, // Wider border
// DASHED pattern to distinguish from solid user trail
pattern: StrokePattern.dashed(segments: [8, 4]),
);