We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Confusion in selecting date
When selecting a time range, the minimum date will exceed the maximum date
When selecting a time, the maximum date will exceed the limited date
final ValueNotifier<DateTime> start = ValueNotifier(DateTime.now().subtract(const Duration(days: 7))); final ValueNotifier<DateTime> end = ValueNotifier( DateTime.now(), ); @override Widget build(BuildContext context) { return Material( color: Colors.transparent, child: InkWell( onTap: () async { final result = await showBoardDateTimeMultiPicker( context: context, pickerType: pickerType, maximumDate: DateTime.now(), minimumDate: DateTime.now().subtract(const Duration(days: 30)), startDate: start.value, endDate: end.value, ...
The text was updated successfully, but these errors were encountered:
version: board_datetime_picker: 2.1.6
my flutter version 3.22.2
Sorry, something went wrong.
@ilovexy2tom Thank you for pointing that out. We will look into it, so please wait a moment.
#58 fix multiple date selection bug
14cecef
v2.2.1 (#62)
ac3a5c2
* multiselection top widget * #57 add reset button * #58 fix multiple date selection bug * #61 fix input form picker close * v2.2.1 update
@ilovexy2tom The bug fix has been implemented in version 2.2.1.
No branches or pull requests
Confusion in selecting date
When selecting a time range, the minimum date will exceed the maximum date
When selecting a time, the maximum date will exceed the limited date
Screen_recording_20241227_161736.mp4
The text was updated successfully, but these errors were encountered: