From 440168e01f2d9eb56e40d593f4adcccd72cec334 Mon Sep 17 00:00:00 2001 From: LucaCoduriV <43602144+LucaCoduriV@users.noreply.github.com> Date: Tue, 13 Jul 2021 16:15:06 +0200 Subject: [PATCH] Changed theme colors --- lib/main.dart | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/main.dart b/lib/main.dart index 2119e24..22e0577 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -53,8 +53,13 @@ class MyApp extends StatelessWidget { Widget build(BuildContext context) { return VRouter( theme: ThemeData( + textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.grey), primaryColor: Color(0xffda291c), accentColor: Color(0xffdf4d52), + inputDecorationTheme: InputDecorationTheme( + focusedBorder: UnderlineInputBorder( + borderSide: BorderSide(color: Color(0xffda291c)), + )), buttonTheme: ButtonThemeData( buttonColor: Color(0xffda291c), textTheme: ButtonTextTheme.primary,