From 20b7f2904ae1ce22f343dbc587010e95e84a0d44 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 02065d64..a267df58 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 9645b258..d3ec7f04 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), ), ], );