Does Flutter have standard built-in themes, except the default theme?

Viewed 40

Does Flutter have standard built-in themes, except the default theme? Maybe other Material colors?

1 Answers

There are two themes built in as Light and Dark themes. The default theme is Light.

There are several material colors but if that's not enough you can generate your own color palette and theme based on the colors you want.

Related