From 8a132be52fe15af28f6898ca9305eb526bde7f49 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sun, 20 Jun 2021 14:36:01 +0200 Subject: [PATCH] design: Make some progress indicator more thin --- lib/pages/views/chat_view.dart | 2 +- lib/widgets/event_content/image_bubble.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages/views/chat_view.dart b/lib/pages/views/chat_view.dart index 02065d642..a267df58e 100644 --- a/lib/pages/views/chat_view.dart +++ b/lib/pages/views/chat_view.dart @@ -245,7 +245,7 @@ class ChatView extends StatelessWidget { builder: (BuildContext context, snapshot) { if (controller.timeline == null) { return Center( - child: CircularProgressIndicator(), + child: CircularProgressIndicator(strokeWidth: 2), ); } diff --git a/lib/widgets/event_content/image_bubble.dart b/lib/widgets/event_content/image_bubble.dart index 9645b258b..d3ec7f04c 100644 --- a/lib/widgets/event_content/image_bubble.dart +++ b/lib/widgets/event_content/image_bubble.dart @@ -135,7 +135,7 @@ class _ImageBubbleState extends State { children: [ if (blurhash != null) blurhash, Center( - child: CircularProgressIndicator(), + child: CircularProgressIndicator(strokeWidth: 2), ), ], );