flutterdarttimepicker

How to change the color of Time_range_picker


I want to change the color blue in this time picker, for example I want to change the color of OK and CANCEL button and AM/PM and time selection to red I added a screenshot for the time picker and I took it from her, I downloaded the files to change the color but I only be able to change the color of the underlined time (in red in the screenshot) time_picker screenshot


Solution

  • if you want to change the style of TimePicker you can change it in ThemeData:

     MaterialApp(
         theme:
            ThemeData(
               timePickerTheme: TimePickerThemeData(
                  hourMinuteColor: Colors.green,
                  backgroundColor: Colors.black,
            )),)