Danvick Miller

Results 30 comments of Danvick Miller

> In the meantime I've managed to compile my project and run it on mac by cloning the flutter_form_builder and using it as a local dependency. I also needed to...

To change the input mode for your FormBuilderDateTimePicker, use the `initialEntryMode` attribute, like so: ```Dart FormBuilderDateTimePicker( name: 'date', initialEntryMode: DatePickerEntryMode.calendar, initialValue: DateTime.now(), } ``` Note: The calendar icon on the...

This looks like an interesting idea, I'll consider having it added to the package. Meanwhile, PRs are always welcome ;-) - if you have time. Cheers!

It would be great to have `valueTransformer` as async. The problem, as it is, is that `valueTransformer` is called within Flutter's `FormField.onSave` which itself is synchronous and doesn't `await`

Not at the moment, no. We may however think of adding the feature in the future if there's demand for it. If you think this feature will be helpful to...

Hi @vasilich6107, I'm glad you find this package useful. I haven't considered this yet, sounds like an interesting idea worth trying but maybe a bit challenging to implement.

That's how Flutter's DropdownField works. Also, remember that the 'error' is a failed assertion and happens only in debug mode. In release mode, the default value becomes null if the...

@KendiJ have we added the app icon yet?