You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm able to use FormBuilderDateTimePicker in a form only if the text field is empty, otherwise it bring up the keyboard input and doesn't prompt to the DateTime Picker. Here is the code I'm using:
I'm able to use FormBuilderDateTimePicker in a form only if the text field is empty, otherwise it bring up the keyboard input and doesn't prompt to the DateTime Picker. Here is the code I'm using:
FormBuilderDateTimePicker( attribute: "startdate", initialValue: DateTime.parse(schedule["startdate"]), keyboardType: TextInputType.number, inputType: InputType.date, format: DateFormat("yyyy-M-d"), firstDate: DateTime.now().subtract(new Duration(days: 1)), decoration: InputDecoration(labelText: "Day"), validators: [ FormBuilderValidators.required(), ], ),
and here is the result.
Do you know how I can prevent this inconsistency?
The text was updated successfully, but these errors were encountered: