From 1f486ebfafe62d08a38a841ed3107f91e7ee7fd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20M=C3=BCller?= Date: Sun, 7 May 2023 19:40:02 +0200 Subject: [PATCH] Set overscroll indicator to correct color --- lib/main.dart | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lib/main.dart b/lib/main.dart index 55ecf6c..484bc51 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -71,6 +71,19 @@ class _MainState extends State
{ theme: ThemeData( brightness: Brightness.light, primaryColor: marianumRed, + colorScheme: const ColorScheme( + brightness: Brightness.light, + surface: Colors.white, + onSurface: Colors.white, + onSecondary: Colors.white, + onPrimary: Colors.white, + onError: marianumRed, + onBackground: Colors.black, + error: marianumRed, + background: Colors.white, + secondary: marianumRed, + primary: marianumRed, + ), hintColor: marianumRed, inputDecorationTheme: const InputDecorationTheme( border: UnderlineInputBorder(borderSide: BorderSide(color: marianumRed)),