0

Image showing the divider

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?

SternK
  • 11,649
  • 22
  • 32
  • 46
小笨蛋
  • 1
  • 1

1 Answers1

0

you can wrap cupertinoDatePicker with CupertinoTheme. here is an example

CupertinoTheme(
    data: CupertinoThemeData(
        textTheme: CupertinoTextThemeData(
            dateTimePickerTextStyle: TextStyle(
                fontSize: 22,
                ///more options here
            ),
        ),
     ),
     child: CupertinoDatePicker(
Edtimer
  • 244
  • 3
  • 9