[Solved] How centralize and manage style like with CSS?

Hi,

So when dealing with HTML based applications we can centralized all the aesthetic configuration through CSS.

Now I wondering IF the Flutter has something mechanism to replicate that kind of “centralization”. I know that Flutter offers (out of the box) a color palette management.

As far as I can understand the “way to go” would be creating new set of Widget and injecting new defaults. Is this the right approach or is there a more generic way to do so?

Look up Theme Extensions. I think this is what you’re talking about.

1 Like

That’s exactly what I was looking for! Thank you!