(fix) felhős projekthez csak bejelentkezés után lehet csatlakozni, név megjelenítése a kapcsolatok mellett a terepbejárás nézetben.
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s

This commit is contained in:
2026-08-07 21:25:31 +02:00
parent 950c2f48f1
commit e1128700f0
10 changed files with 124 additions and 18 deletions
@@ -65,6 +65,18 @@ class NoteItemLabelLayer extends StatelessWidget {
}
}
// ----- Kapcsolatok - névvel a személy ikon felett
for (final c in controller.contactsWithLocation) {
markers.add(Marker(
point: LatLng(c.contact.lat!, c.contact.lon!),
width: 130,
height: 48,
alignment: Alignment.bottomCenter,
child: Column(mainAxisSize: MainAxisSize.min, children: [
_LabelBubble(label: c.contact.name, color: Colors.indigo)
])));
}
if (markers.isEmpty) return const SizedBox.shrink();
return MarkerLayer(markers: markers);
});