Skip to content

Commit

Permalink
Update details_panel.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagocarvalhodev committed Oct 10, 2024
1 parent 4c66237 commit 41a6d85
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/components/details_panel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -604,6 +604,7 @@ class _DetailsPanelState extends State<DetailsPanel> {
leading: Text(
formatDateToUtcString(widget.item.lastUpdated),
style: typography.paragraphNormal(),
textAlign: TextAlign.right,
),
itemTitle: appLocalizationsOf(context).lastUpdated,
),
Expand All @@ -612,6 +613,7 @@ class _DetailsPanelState extends State<DetailsPanel> {
leading: Text(
formatDateToUtcString(widget.item.dateCreated),
style: typography.paragraphNormal(),
textAlign: TextAlign.right,
),
itemTitle: appLocalizationsOf(context).dateCreated,
),
Expand Down Expand Up @@ -674,6 +676,7 @@ class _DetailsPanelState extends State<DetailsPanel> {
leading: Text(
formatDateToUtcString(widget.item.lastUpdated),
style: typography.paragraphNormal(),
textAlign: TextAlign.right,
),
itemTitle: appLocalizationsOf(context).lastUpdated,
),
Expand All @@ -682,6 +685,7 @@ class _DetailsPanelState extends State<DetailsPanel> {
leading: Text(
formatDateToUtcString(widget.item.dateCreated),
style: typography.paragraphNormal(),
textAlign: TextAlign.right,
),
itemTitle: appLocalizationsOf(context).dateCreated,
),
Expand Down Expand Up @@ -725,6 +729,7 @@ class _DetailsPanelState extends State<DetailsPanel> {
DetailsPanelItem(
leading: Text(
formatDateToUtcString(item.lastUpdated),
textAlign: TextAlign.right,
style: typography.paragraphNormal(),
),
itemTitle: appLocalizationsOf(context).lastUpdated,
Expand All @@ -733,6 +738,7 @@ class _DetailsPanelState extends State<DetailsPanel> {
DetailsPanelItem(
leading: Text(
formatDateToUtcString(item.dateCreated),
textAlign: TextAlign.right,
style: typography.paragraphNormal(),
),
itemTitle: appLocalizationsOf(context).dateCreated,
Expand Down

0 comments on commit 41a6d85

Please sign in to comment.