date_time_picker
date_time_picker copied to clipboard
Size Of Time Selection Field Problem
After updating Flutter to version 3.10, I am having a problem with the size of the time selection field as in the photo below. how can i solve it?
The issue can be caused by using a custom font.
Add the following to your MaterialApp widget:
theme: ThemeData(
timePickerTheme: const TimePickerThemeData(
hourMinuteTextStyle: TextStyle(fontSize: 52)),
)