m3uzz / date_time_picker

A Flutter widget to show a text form field to display a date or clock dialog. This widget extend TextField and has a similar behavior as TextFormField.
https://pub.dartlang.org/packages/date_time_picker
Other
105 stars 158 forks source link

Size Of Time Selection Field Problem #79

Open AyberkAhmet opened 1 year ago

AyberkAhmet commented 1 year ago

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? choosed_time_size_problem

rossheat commented 1 year ago

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)),
)