Ravi
Ravi

Reputation: 1102

How to set the maximum date to the cupertino datepicker in flutter?

I want to set the maximum date of the datepicker of Cupertino Picker to current date So that users can not select a future date.

Upvotes: 3

Views: 5693

Answers (1)

Günter Zöchbauer
Günter Zöchbauer

Reputation: 657308

pass a maximumDate

CupertinoDatePicker(..., maximumDate: DateTime.now())

https://docs.flutter.io/flutter/cupertino/CupertinoDatePicker/CupertinoDatePicker.html

Upvotes: 6

Related Questions