From 64503dfa0a04af6335c8601836b9b8e46416e4a8 Mon Sep 17 00:00:00 2001 From: danemadsen Date: Sun, 12 May 2024 13:39:21 +1000 Subject: [PATCH] progress spinner theme --- lib/static/themes.dart | 3 +++ lib/ui/mobile/widgets/buttons/menu_button.dart | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/static/themes.dart b/lib/static/themes.dart index c77cb874..4ccacd06 100644 --- a/lib/static/themes.dart +++ b/lib/static/themes.dart @@ -82,6 +82,9 @@ class Themes { selectionColor: tertiary, cursorColor: secondary, ), + progressIndicatorTheme: ProgressIndicatorThemeData( + color: secondary, + ), colorScheme: isDark ? ColorScheme.dark( background: background, onBackground: onBackground, diff --git a/lib/ui/mobile/widgets/buttons/menu_button.dart b/lib/ui/mobile/widgets/buttons/menu_button.dart index 627b9482..a0f4e041 100644 --- a/lib/ui/mobile/widgets/buttons/menu_button.dart +++ b/lib/ui/mobile/widgets/buttons/menu_button.dart @@ -47,7 +47,7 @@ class _MenuButtonState extends State { height: 24, // Height of the CircularProgressIndicator child: Center( child: CircularProgressIndicator( - strokeWidth: 2.0, // Adjust the thickness of the spinner here + strokeWidth: 3.0, // Adjust the thickness of the spinner here ), ), ),