From 495efef5919826fe85768d9439c79ece13626c07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ku=C3=9Fowski?= Date: Wed, 1 Oct 2025 09:02:38 +0200 Subject: [PATCH] chore: Make progress indicators rounder --- lib/config/themes.dart | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/config/themes.dart b/lib/config/themes.dart index 8b6fb38cf..e7e516008 100644 --- a/lib/config/themes.dart +++ b/lib/config/themes.dart @@ -116,6 +116,11 @@ abstract class FluffyThemes { ), ), ), + progressIndicatorTheme: ProgressIndicatorThemeData( + strokeCap: StrokeCap.round, + color: colorScheme.primary, + refreshBackgroundColor: colorScheme.primaryContainer, + ), snackBarTheme: isColumnMode ? const SnackBarThemeData( showCloseIcon: true,