From fe5810cc13ca9042865c3af237aca03db7c95133 Mon Sep 17 00:00:00 2001 From: Benimautner Date: Thu, 23 May 2024 00:43:57 +0200 Subject: [PATCH] dart format --- lib/theme/theme.dart | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/lib/theme/theme.dart b/lib/theme/theme.dart index 7055665..3c54ea4 100644 --- a/lib/theme/theme.dart +++ b/lib/theme/theme.dart @@ -60,9 +60,12 @@ ThemeData _buildVikunjaTheme(ThemeData base, {bool isDark = false}) { .withLightness(max(_hslColor.lightness - 0.03, 0)) .toColor(); }(), - ), colorScheme: base.colorScheme.copyWith( - primary: vPrimaryDark, - secondary: vPrimary, - ).copyWith(error: vRed), + ), + colorScheme: base.colorScheme + .copyWith( + primary: vPrimaryDark, + secondary: vPrimary, + ) + .copyWith(error: vRed), ); }