From ccf348bcd320973085cca6371f39dace39d41f1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20M=C3=BCller?= Date: Sat, 6 May 2023 21:10:36 +0200 Subject: [PATCH] Added chat file download indicator --- lib/screen/pages/talk/chatBubble.dart | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/screen/pages/talk/chatBubble.dart b/lib/screen/pages/talk/chatBubble.dart index 35a7736..1c53d2e 100644 --- a/lib/screen/pages/talk/chatBubble.dart +++ b/lib/screen/pages/talk/chatBubble.dart @@ -145,7 +145,13 @@ class _ChatBubbleState extends State { left: 0, right: 0, bottom: 0, - child: Center(child: CircularProgressIndicator(value: downloadProgress/100)), + child: Stack( + children: [ + const Center(child: Icon(Icons.download)), + const Center(child: CircularProgressIndicator(color: Colors.white)), + Center(child: CircularProgressIndicator(value: downloadProgress/100)), + ], + ) ), ), ],