nylo-core / nylo

Nylo is the fastest way to build your next Flutter mobile app. Streamline your projects with Nylo's opinionated approach to building Flutter apps. Develop your next idea ⚡️

Home Page:https://nylo.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

primaryColor not reflecting in input field color

a0v0 opened this issue · comments

commented

I have set primaryColor value to blue. But the input field label color is purple.

How do I make input field to inherit this blue color?

image

Hi @a0v0,

You can change the label colour from your light/dark theme file like in the below example.

return ThemeData(
  ...
  inputDecorationTheme: const InputDecorationTheme(
    labelStyle: TextStyle(color: Colors.black),
  )