design: Make some progress indicator more thin

This commit is contained in:
Christian Pauly 2021-06-20 14:36:01 +02:00
parent 2be26e0287
commit 20b7f2904a
2 changed files with 2 additions and 2 deletions

View File

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

View File

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