Skip to content

Commit

Permalink
fix location text alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
LGro committed May 16, 2024
1 parent ca9c41b commit 17d3974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ui/locations/page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ Widget locationTile(ContactTemporaryLocation location,
tileColor: Colors.white,
onTap: onTap,
subtitle: Row(children: [
Column(children: [
Column(crossAxisAlignment: CrossAxisAlignment.start, children: [
Text('From: ${dateFormat.format(location.start)}'),
if (location.end == location.start)
Text('Till: ${dateFormat.format(location.end)}"}'),
Expand Down

0 comments on commit 17d3974

Please sign in to comment.