Flutter: showDatePicker firstdate and lastdate from same week - flutter

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)),
);

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);}

how to set once a user select a date in one field can't able to pick less than in another field in 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

How to set a default time of 11:59 pm , while selecting endDate using Date picker in Flutter?

My plan is to select 2 dates
start Date
end Date
Where I should get the start date as "20/08/2021 12:00 AM" and end date as "20/08/2021 11:59 PM".
But I am only getting the start Date as "20/08/2021 12:00 AM" not the end Date as "20/08/2021 11:59 PM" , here I am focusing the end Time i.e.,11:59 PM, which is the end time of a day in 12 hour Format, and I am trying to get it by default while picking the end Date.
And for this I already checked the official documentation , I didn't found any resolution.
For reference
https://api.flutter.dev/flutter/intl/DateFormat-class.html
Here is the code
static DateTime nope = DateTime.now();
var selectedStartDate = DateFormat('dd/MM/yyyy hh:mm a');
// var date1 = DateFormat('dd/MM/yyyy').format(nope);
Future<Null> _selectDate(BuildContext context) async {
final DateTime picked = await showDatePicker(
context: context,
initialDate: nope,
firstDate: DateTime(2000, 8),
lastDate: DateTime(2101));
if (picked != null && picked != nope)
setState(() {
nope = picked;
});
startDate.text = selectedStartDate.format(nope);
}
static DateTime yep = DateTime.now();
var selectEndDate = DateFormat('dd/MM/yyyy');
var date2 = DateFormat('dd/MM/yyyy').format(yep);
Future<Null> _selecteddate(BuildContext context) async {
final DateTime pick = await showDatePicker(
context: context,
initialDate: yep,
firstDate: DateTime(2000, 8),
lastDate: DateTime(2101));
if (pick != null && pick != yep)
setState(() {
yep = pick;
});
endDate.text = selectEndDate.format(yep);
}
Here is the output, how I am getting from the above code
Please do help me in searching the solution and Thanks in advance 😀.
Maybe replace
var selectEndDate = DateFormat('dd/MM/yyyy');
with
var selectEndDate = DateFormat('dd/MM/yyyy hh:mm a');
I'm building a POS project now, So I had the same Start Date and End Date Fields in my Tax and other Reports sections. When I faced the same issue I fixed it by adding 23 hours and 59 minutes to the selected date.
I use the below Class to pick a date throughout my application
class DateTimeUtils {
//========== Singleton Instance ==========
DateTimeUtils._internal();
static DateTimeUtils instance = DateTimeUtils._internal();
factory DateTimeUtils() {
return instance;
}
//========== Date Picker ==========
Future<DateTime?> datePicker(BuildContext context, {final DateTime? initDate, final bool endDate = false}) async {
final DateTime? selectedDate = await showDatePicker(
context: context,
initialDate: initDate ?? DateTime.now(),
firstDate: DateTime(1998, 04, 14),
lastDate: DateTime.now(),
);
if (selectedDate != null && endDate) {
final DateTime updated = selectedDate.add(const Duration(hours: 23, minutes: 59));
return updated;
} else {
return selectedDate;
}
}
}
Can be called from anywhere in the project like below
final _selectedDate = await DateTimeUtils.instance.datePicker(context, initDate: toDate, endDate: true);

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());
}

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