I need to change label and border's default color to use the primary color on focus, and i've already tried InputDecorationTheme, but it doesn't work well with the label. I realize that the TextField uses accent color.
The screen; and theme:
final ThemeData darkTheme = ThemeData(
primaryColor: Colors.blueAccent[400],
accentColor: Colors.pinkAccent[400],
brightness: Brightness.dark,
backgroundColor: Colors.grey[900],
inputDecorationTheme: InputDecorationTheme(
fillColor: Colors.white.withOpacity(0.1),
filled: true,
),
);
Thank you.