diff --git a/lib/ui/detail_page.dart b/lib/ui/detail_page.dart index 06136f47b571faf1055d12b01f9e986850a1b170..eefeb5d0cf5a8e9c593c2295362b279d351a1c8d 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(