date_time_picker icon indicating copy to clipboard operation
date_time_picker copied to clipboard

Size Of Time Selection Field Problem

Open AyberkAhmet opened this issue 2 years ago • 1 comments

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

AyberkAhmet avatar May 11 '23 10:05 AyberkAhmet

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

rossheat avatar Jun 24 '23 00:06 rossheat