GaspardMerten / date_field

Flutter DateField and DateFormField
Other
46 stars 32 forks source link

timer is white colord and invisible #27

Closed AviadC31 closed 2 years ago

AviadC31 commented 2 years ago

datePickerTest

GaspardMerten commented 2 years ago

This is caused by your theme!

You have two options to solve your issue. The first one would be to change your theme globally, the second one would be to change your theme locally by wrapping the date field widget with a theme widget.

Example:

Theme(
  theme: Theme.of(context).copyWith()// change the color that you set to white and try to see which one is related to the text color of the time dialog
  child: Date...
)
AviadC31 commented 2 years ago

solved. thank you!

This is caused by your theme!

You have two options to solve your issue. The first one would be to change your theme globally, the second one would be to change your theme locally by wrapping the date field widget with a theme widget.

Example:

Theme(
  theme: Theme.of(context).copyWith()// change the color that you set to white and try to see which one is related to the text color of the time dialog
  child: Date...
)