Merge branch 'fix_busy_loop' into 'main'
fix: busy loop due to CircularProgressIndicator See merge request famedly/fluffychat!453
This commit is contained in:
commit
1382db60ad
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ class _ConnectionStatusHeaderState extends State<ConnectionStatusHeader> {
|
|||
height: 24,
|
||||
child: CircularProgressIndicator(
|
||||
strokeWidth: 2,
|
||||
value: _status.progress,
|
||||
value: _connected ? 1.0 : _status.progress,
|
||||
),
|
||||
),
|
||||
SizedBox(width: 12),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue