Added chat file download indicator

This commit is contained in:
Elias Müller 2023-05-06 21:10:36 +02:00
parent ac88f84321
commit ccf348bcd3

@ -145,7 +145,13 @@ class _ChatBubbleState extends State<ChatBubble> {
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)),
],
)
),
),
],