Added chat file download indicator
This commit is contained in:
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)),
|
||||
],
|
||||
)
|
||||
),
|
||||
),
|
||||
],
|
||||
|
Loading…
x
Reference in New Issue
Block a user