diff --git a/lib/ui/detail_page.dart b/lib/ui/detail_page.dart index 06136f47b..eefeb5d0c 100644 --- a/lib/ui/detail_page.dart +++ b/lib/ui/detail_page.dart @@ -285,6 +285,19 @@ class _DetailPageState extends State { )); } } + if (file.uploadedFileID != null) { + items.add( + Padding(padding: EdgeInsets.all(4)), + ); + items.add(Row( + children: [ + Icon(Icons.cloud_upload), + Padding(padding: EdgeInsets.all(4)), + Text(getFormattedTime( + DateTime.fromMicrosecondsSinceEpoch(file.updationTime))), + ], + )); + } return AlertDialog( title: Text(file.title), content: SingleChildScrollView(