I dont know

This commit is contained in:
2025-07-09 16:13:08 +02:00
parent b9c9063571
commit dd78fab259

View File

@@ -63,7 +63,7 @@ class _MihBusinessProfilePreviewState extends State<MihBusinessProfilePreview> {
); );
} else { } else {
return Icon( return Icon(
MihIcons.mihLogo, MihIcons.iDontKnow,
size: profilePictureWidth, size: profilePictureWidth,
); );
} }
@@ -80,7 +80,9 @@ class _MihBusinessProfilePreviewState extends State<MihBusinessProfilePreview> {
), ),
), ),
Text( Text(
widget.myLocation != null ? calculateDistance() : "0.00 km", widget.myLocation != null || widget.myLocation!.isEmpty
? calculateDistance()
: "0.00 km",
style: TextStyle( style: TextStyle(
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
fontSize: 12, fontSize: 12,