Set overscroll indicator to correct color

This commit is contained in:
Elias Müller 2023-05-07 19:40:02 +02:00
parent eaccd5cc54
commit 1f486ebfaf

View File

@ -71,6 +71,19 @@ class _MainState extends State<Main> {
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)),