I am using Cupertino date picker . I want to achieve something like below image -
But currently it's look like below image -
This is my code -
CupertinoTheme(
data: CupertinoThemeData(
textTheme: CupertinoTextThemeData(
dateTimePickerTextStyle: TextStyle(
fontSize: 20,
color: Colors.white
),
),
),
child: CupertinoDatePicker(
mode: CupertinoDatePickerMode.date,
onDateTimeChanged: (DateTime dateTime) {},
),
)
How to achieve like first image ? Is there any library to achieve similar?