-
Notifications
You must be signed in to change notification settings - Fork 415
New issue
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
AM/PM Merged, Updated, Fixed #54
base: master
Are you sure you want to change the base?
Conversation
Merge branch 'ampm' of https://github.com/JamesMcIntosh/flutter-cupertino-date-picker # Conflicts: # lib/src/widget/datetime_picker_widget.dart # lib/src/widget/time_picker_widget.dart
@dylanwuzh can we get this merged? 👍 |
@rdev-software I'm seeing an issue where when I attempt to scroll any of the wheels, the hours disappear. See video here: https://share.getcloudapp.com/nOumbNvl Here's the code I'm using: DatePicker.showDatePicker(
context,
initialDateTime: initialValue,
dateFormat: 'MMM dd, yyyy|hh|mm|a',
minDateTime: DateTime.now(),
pickerMode: DateTimePickerMode.datetime,
onConfirm: (v, _) {
selectedDateTime = v;
controller.text = formatDateTime(v);
Vibrate.feedback(FeedbackType.success);
},
); Are you experiencing this? |
If I change the |
Would love to see this merged and available soon. Thanks for the enhancement! |
…no-date-picker into ampm # Conflicts: # lib/src/widget/datetime_picker_widget.dart
@dylanwuzh Can this get merged? |
This removes DiagnosticableMixin, since it is a duplicate implementation of Diagnosticable. It existed in order to support plugins that wanted to support both master and stable, but now Diagnosticable is a mixin on stable, so we don't need it anymore.
Hi is this implemented in the production? |
Adding AM/PM feature to time picker and datetime picker
#35
Used code from PR #49
Retested, Added missing features and fixed some bugs with datetime picker