Date Picker is very usefull fuction which shows a picker dialog to select date.
Please find below code for a Simple date Picker Fuction
showDatePickrDialog(BuildContext context) {
Future<DateTime> selectedDate = showDatePicker(
context: context,
initialDate: DateTime(2000),
firstDate: DateTime(1900),
lastDate: DateTime(2020),
builder: (BuildContext context, Widget child) {
return Theme(
data: ThemeData.dark(),
child: child,
);
},
);
selectedDate.then((value) {
var date = DateFormat('dd-MM-yyyy').format(value);
print("SELECTED_DATE==$date");
});
}