how to set once a user select a date in one field can't able to pick less than in another field in flutter - flutter

Blockquote
how to set once a user select a date in one field can't able to pick less than in another field in flutter

Use this gor the first date picker
DateTime? startDate = await showDatePicker(
context: context,
initialDate: DateTime.now(),
firstDate: DateTime.now(),
lastDate: DateTime(2100),
);
Use this for the next datepicker
DateTime? endPickedDate = await showDatePicker(
context: context,
initialDate: startDate,
firstDate: startDate,
lastDate: DateTime(2100),
);
If you notice you can see the initial date of end date picker is the picked value from startDatePicker.
Also a best approach will be to use a date range picker

Related

I wants to show selected date in date picker when I tap again on date picker using flutter

Currently initialDate is set to DateTime.now() initially today's date must shown but when I select any date and again opens the Date Picker initial date should be the one which I have selected previously.
How to do this:
child: TextField(
onTap: () async {
DateTime? pickedDate = await showDatePicker(
context: context,
initialDate: DateTime.now(),
firstDate: DateTime(
1991), //DateTime.now() - not to allow to choose before today.
lastDate: DateTime(2025),
// onConfirm:widget.onChanged,
).then((pickedDate) {
if (pickedDate != null) {
// print(
// pickedDate); //pickedDate output format => 2021-03-10 00:00:00.000
String formattedDate =
DateFormat('yyyy-MM-dd').format(pickedDate);
print(formattedDate);
setState(() {
startDtcontroller.text = formattedDate;
//set output date to TextField value.
});
//print(startDtcontroller.text);
//formatted date output using intl package => 2021-03-16
//you can implement different kind of Date Format here according to your requirement
// DateFormat df = new DateFormat("yyyy-MM-dd");
// String stDate = df.format(pickedDate);
// print(stDate);
widget.onChanged(formattedDate);
} else {
print("Date is not selected");
}
});
You need to save that value somewhere...
DateTime? selectedDateTime;
...
child: TextField( onTap: () async {
DateTime? pickedDate = await showDatePicker(
context: context,
initialDate: selectedDateTime ?? DateTime.now(),
...).then(pickedDate) { setState(() => selectedDateTime = pickedDate);}

Use current year as firstDate in showDatePicker

I'm beginning to learn flutter and I'm working with showDatePicker
There, I can manually assign the current year to firstDate
firstDate: DateTime(2021)
I'm trying to automatically use the current year as firstDate.
For that, what I did so far was:
void _showDatePicker() {
var currentYear = DateFormat.y().format(DateTime.now()) as DateTime;
showDatePicker(
context: context,
initialDate: DateTime.now(),
firstDate: currentYear,
lastDate: DateTime.now()
);
}
If I remove as DateTime I get the error in firstDate: currentYear:
The argument type 'String' can't be assigned to the parameter type 'DateTime'
and if I add as DateTime, I get the error:
type 'String' is not a subtype of type 'DateTime' in type cast
How can I fix it?
A simpler and more performant solution would be to not use strings at all. They're unnecessary and add additional overhead.
You can get the current year from the DateTime object. And pass it to the default DateTime constructor. No string conversion, no intl package, no performance hit from parsing a date from a string.
showDatePicker(
context: context,
initialDate: DateTime.now(),
firstDate: DateTime(DateTime.now().year),
lastDate: DateTime.now()
);
Hey Please try below code.
showDatePicker(
context: context,
initialDate: DateTime.now(),
firstDate: DateTime(2000),
lastDate: DateTime(2025),
)
showDatePicker(
context: context,
initialDate: DateTime.now(),
firstDate: DateTime.now(),
lastDate: DateTime.now()
);
I have made some changes in your code this code will work for you.
Your current year is string so i have converted it to int then pass inside DateTime()
void _showDatePicker() {
int currentYear = int.parse(DateFormat.y().format(DateTime.now()));
showDatePicker(
context: context,
initialDate: DateTime.now(),
firstDate: DateTime(currentYear),
lastDate: DateTime.now());
}

Flutter: showDatePicker firstdate and lastdate from same week

I am trying to give user an option to select date between 7 days.
Like today is 2nd March then user can select any date before 10th March.
My current code is showing first date as 01/01/03 i am not sure why it is giving me this date.
Here is the code.
_pickedDate() async {
rescheduleddate = await showDatePicker(
context: context,
firstDate: DateTime(DateTime.now().day + 1),
lastDate: DateTime(DateTime.now().day + 7),
initialDate: DateTime(DateTime.now().day + 1),
);
if (rescheduleddate != null) {
setState(() {
pickeddate = rescheduleddate;
});
}
}
I am not sure what am i doing wrong because if i add year instead of day then it is working fine.
I managed to solve this one.
_pickedDate() async {
rescheduleddate = await showDatePicker(
context: context,
firstDate: DateTime.now().add(new Duration(days: 1)),
lastDate: DateTime.now().add(new Duration(days: 7)),
initialDate: DateTime.now().add(new Duration(days: 1)),
);
if (rescheduleddate != null) {
setState(() {
pickeddate = rescheduleddate;
});
}
}
I think the issue might be that you aren't properly adding a duration to the current DateTime object. By calling .day you are just getting the number of the day as an integer, which you're then trying to plug back into a new DatePicker as an argument. For example, if today is March 2nd, DateTime.now().day would return 2, so your firstDate value is currently trying to evaluate what DateTime(3) is (if you inspect the DateTime function, the first argument is the year as an integer, so it's setting the date to 01/01/03). Try doing this:
rescheduleddate = await showDatePicker(
context: context,
firstDate: DateTime.now().add(Duration(days: 1)),
lastDate: DateTime.now().add(Duration(days: 7)),
initialDate: DateTime.now().add(Duration(days: 1)),
);

Flutter - Filter Stream based on Date picked

I have a simple flutter application where I retrieve a bunch of records from Firebase. The records contain a field called DATE, which is in DateTime format.(Date + time + TZ)
But from my application, How can I make a page where I can filter the records just for a selected DATE.
When I use .where('time', isGreaterThan : _selectedDate) , it works. But it gives all days after the selected date. I just want to filter for just ONE selected day.
Heres my Code:
Stream<QuerySnapshot> _getCurrentOders() async* {
yield* FirebaseFirestore.instance
.collection('ItemList')
.where('time', isGreaterThan: _selectedDate)
.orderBy('time', descending: false)
.snapshots();
}
I also use a DateTime picker to select a date.
DateTimeField(
initialValue: DateTime.now(),
onChanged: (val) {
setState(() {
_selectedDate = val;
});
},
format: format,
onShowPicker: (context, currentValue) {
return showDatePicker(
context: context,
firstDate: DateTime(2019),
initialDate: currentValue ?? DateTime.now(),
lastDate: DateTime(2100));
},
),
Thank you for the support!
// this gives you the first millisecond of the day
var startOfTheDay = DateTime(_selectedDate.year, _selectedDate.month, _selectedDate.day);
//and this gives you the first millisecond of the next day
var endOfTheDay = startOfTheDay.add(Duration(days: 1);
and after that you can use:
.where('time', isGreaterThan : startOfTheDay).where('time', isLessThan : endOfTheDay)

Format the date with day and month

How would I format the date returned to be displayed with the day and month eg 23 AUG with my code.
var finaldate;
void callDatePicker() async {
var order = await getDate();
setState(() {
finaldate = order;
});
}
Future<DateTime> getDate() {
return showDatePicker(
context: context,
initialDate: DateTime.now(),
firstDate: DateTime(2020),
lastDate: DateTime(2025),
Text('$finaldate',
You can use DateFormat from the intl package
DateFormat('dd MMM, yyyy').format(finaldate) // gives 27 Jun, 2020