From 41a6d858f69c2713820d7d8941a0c4b4408bc4de Mon Sep 17 00:00:00 2001 From: Thiago Carvalho <32248947+thiagocarvalhodev@users.noreply.github.com> Date: Thu, 10 Oct 2024 02:52:51 -0300 Subject: [PATCH] Update details_panel.dart --- lib/components/details_panel.dart | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/components/details_panel.dart b/lib/components/details_panel.dart index 41feae5c6..6bac58d9d 100644 --- a/lib/components/details_panel.dart +++ b/lib/components/details_panel.dart @@ -604,6 +604,7 @@ class _DetailsPanelState extends State { leading: Text( formatDateToUtcString(widget.item.lastUpdated), style: typography.paragraphNormal(), + textAlign: TextAlign.right, ), itemTitle: appLocalizationsOf(context).lastUpdated, ), @@ -612,6 +613,7 @@ class _DetailsPanelState extends State { leading: Text( formatDateToUtcString(widget.item.dateCreated), style: typography.paragraphNormal(), + textAlign: TextAlign.right, ), itemTitle: appLocalizationsOf(context).dateCreated, ), @@ -674,6 +676,7 @@ class _DetailsPanelState extends State { leading: Text( formatDateToUtcString(widget.item.lastUpdated), style: typography.paragraphNormal(), + textAlign: TextAlign.right, ), itemTitle: appLocalizationsOf(context).lastUpdated, ), @@ -682,6 +685,7 @@ class _DetailsPanelState extends State { leading: Text( formatDateToUtcString(widget.item.dateCreated), style: typography.paragraphNormal(), + textAlign: TextAlign.right, ), itemTitle: appLocalizationsOf(context).dateCreated, ), @@ -725,6 +729,7 @@ class _DetailsPanelState extends State { DetailsPanelItem( leading: Text( formatDateToUtcString(item.lastUpdated), + textAlign: TextAlign.right, style: typography.paragraphNormal(), ), itemTitle: appLocalizationsOf(context).lastUpdated, @@ -733,6 +738,7 @@ class _DetailsPanelState extends State { DetailsPanelItem( leading: Text( formatDateToUtcString(item.dateCreated), + textAlign: TextAlign.right, style: typography.paragraphNormal(), ), itemTitle: appLocalizationsOf(context).dateCreated,