design: Make some progress indicator more thin

onboarding
Christian Pauly 4 years ago
parent 43c3c75b2e
commit 8a132be52f

@ -245,7 +245,7 @@ class ChatView extends StatelessWidget {
builder: (BuildContext context, snapshot) { builder: (BuildContext context, snapshot) {
if (controller.timeline == null) { if (controller.timeline == null) {
return Center( return Center(
child: CircularProgressIndicator(), child: CircularProgressIndicator(strokeWidth: 2),
); );
} }

@ -135,7 +135,7 @@ class _ImageBubbleState extends State<ImageBubble> {
children: <Widget>[ children: <Widget>[
if (blurhash != null) blurhash, if (blurhash != null) blurhash,
Center( Center(
child: CircularProgressIndicator(), child: CircularProgressIndicator(strokeWidth: 2),
), ),
], ],
); );

Loading…
Cancel
Save