Date Picker is very usefull fuction which shows a picker dialog to select date.
Please find below code for a Simple date Picker Fuction
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 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" ); }); } |