Skip to content

Commit e7b3f94

Browse files
committed
fix: change DateTime Picker behavior when InputType==both
1 parent f39fa6d commit e7b3f94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/fields/form_builder_date_time_picker.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ class _FormBuilderDateTimePickerState extends FormBuilderFieldDecorationState<
307307
if (date != null) {
308308
if (!mounted) break;
309309
final time = await _showTimePicker(currentValue);
310-
if(time == null) {
310+
if (time == null) {
311311
newValue = null;
312312
} else {
313313
newValue = combine(date, time);

0 commit comments

Comments
 (0)