I want to change the color of these dividers, but I can't find the theme. I use it
flutter_cupertino_datetime_picker
Can you help me?
you can wrap cupertinoDatePicker with CupertinoTheme. here is an example
CupertinoTheme(
data: CupertinoThemeData(
textTheme: CupertinoTextThemeData(
dateTimePickerTextStyle: TextStyle(
fontSize: 22,
///more options here
),
),
),
child: CupertinoDatePicker(