Merge branch 'fix_busy_loop' into 'main'

fix: busy loop due to CircularProgressIndicator

See merge request famedly/fluffychat!453
This commit is contained in:
Krille Fear 2021-07-23 16:40:27 +00:00
commit 1382db60ad

View file

@ -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),