Closed AviadC31 closed 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...
)
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... )