11 questions
0
votes
1
answer
88
views
Action items not showing in flutter_date_range_picker
I attempted to integrate the Flutter date range picker widget into my Flutter web application. While the option to change months is functional, I encountered an issue where the left and right arrow ...
0
votes
1
answer
2k
views
How can a Date Range Picker in Flutter save the range automatically?
I have added a date range picker to my code. As shown in the image, I am using the text 'Select' for the saving button. However, I want to change this behavior so that the date range is saved as soon ...
0
votes
2
answers
751
views
I want to change the date string of showDatePicker on flutter
I want to customize the color and the text of this showDatePicker with material3, on flutter
I want to customize as this
I need this text to be something like this "Seg, 17 de jul."
0
votes
2
answers
2k
views
Flutter Date Range Picker limit to certain days
How can we allow only selection of 30 days with any start date in DateRangePicker?
Only firstDate and lastDate can be provided, which can be restricted to 30 days starting from the provided firstDate ...
0
votes
1
answer
710
views
How to use Flutter Riverpod with Date Range Picker
I am trying to use Flutter Riverpod together with the Date Range Picker.
I have a list of Trips which when clicked on, open up the Trip Page.
On the trip page, the user can view the start / end dates
...
0
votes
2
answers
103
views
Flutter setState does not update widget
I have a function called pickDateRange and, for some reason, dateRangePicker does not update its value in widget after setState. I would like to know how to solve it. When I print the value of ...
0
votes
0
answers
801
views
How to disable Flutter DatePicker?
I have an issue with DatePicker in my application. Here's a simple TextFormField that I've created in my app which will open up DatePicker whenever the user taps on it.
This widget is a part of a ...
2
votes
0
answers
343
views
FLUTTER- How to use selectableDayPredicate: in CupertinoDatePicker() widget?
in Material Design using showDatePicker() widget , we can customize selectable date in particular day using selectableDayPredicate: argument. so i have a list contains some DateTime(), this list is ...
0
votes
2
answers
2k
views
How to get only "date" in DateTime format using syncfusion_flutter_datepicker in Flutter
What i want:
I want to get only the startDate and endDate in DateTime format so that i can find the difference of days between the two dates. Instead i'm getting startDate and endDate in String format....
0
votes
1
answer
180
views
The instance member 'noww' can't be accessed in an initializer
i have this date picker in my app, and i want the last date to be 3 years ago from the time using the app how can i solve it, i tried to give the last date now.year -3 but it doesn't work! it keeps ...
8
votes
6
answers
17k
views
Customize DateRangePicker in flutter
I want to customize DateRangePicker in flutter, How can I change the following elements?
Change the Save button to image.
Remove the Switch to input button.
Change the header background color.
Change ...