Open martin-braun opened 5 months ago
Also I tried to use the surfaceTint
instead, but no color would result in surfaceContainerHigh
which is the color that the datetime picker uses.
Have you tried using colorScheme secondary color?
Also I tried to use the
surfaceTint
instead, but no color would result insurfaceContainerHigh
which is the color that the datetime picker uses.
Have you tried using colorScheme secondary color?
@philipvrx It has no tint, despite me using secondary and tertiary colors in my theme. I have set almost every color that ThemeData
allows me to set.
Even if there is any other field on ThemeData
that controls this, it's clearly a bug. The DateTime picker uses the primary color as tint color, so the alert dialog should do the same for a coherent experience.
This is a platform dialog spawned on Material:
This is a platform date picker spawned on Material:
Notice how the DateTime picker has a greenish tint to it? My
ThemeData
is has acolorScheme
that was seeded from#0A7A34
and no explicit themes or colors are used here. So, the platform dialog does something differently here and it is wrong.I noticed the solution is to set the
PlatformAlertDialog
color tosurfaceContainerHigh
:Defaults should be changed here I guess.