rxlabz / panache

🎨 Flutter Material Theme editor
https://rxlabz.github.io/panache
1.76k stars 233 forks source link

inputDecorationTheme #9

Closed januwA closed 5 years ago

januwA commented 5 years ago

In the generated theme data, input errorStyle overrides ThemeData.errorColor

final ThemeData myTheme = ThemeData(
errorColor: Color(0xffd32f2f), 

inputDecorationTheme: InputDecorationTheme(
    errorStyle: TextStyle(
      color: Color(0xdd000000), // overrides
      fontSize: 16.0,
      fontWeight: FontWeight.w400,
      fontStyle: FontStyle.normal,
 ),
);