card_settings
card_settings copied to clipboard
how can I use autofocus so the form can scroll itself?
Thanks again for this great plugin.
Currently the form doesn't scroll itself. so how can I use autofocus so the form can scroll itself? Also the CardSettingsListPicker or similar doesn't have auto focus.
Example I have a form as listed below. If I use autofocus for just CardSettingsText it jumps all the way down to my text. Any idea?
I also hack the CardSettingsText and add thethis.textInputAction so I can use textInputAction: TextInputAction.next. But it didn't worked.
- CardSettingsListPicker
- CardSettingsListPicker
- CardSettingsListPicker
- CardSettingsListPicker
- CardSettingsListPicker
- CardSettingsListPicker
- CardSettingsText
There are two modes, CardSettings, and CardSettings.sectioned, which one are you using?
Could you provide some example code?
Is text input action not available?
I am using CardSettings and autofocus is not working properly. Also I need to clear the default value of text field when user tabs on text field... Any help please
It appears flutter only provides autofocus for text fields:
https://flutter.dev/docs/cookbook/forms/focus
I am wondering if a hidden text field next to the pickers could be tabbed through, and tabbing a second time could display the dialog. I will do some reading to see if there is an expected behavior for material forms.
I'm kind of at a loss on this one. Would autofocus on a picker automatically pop up the dialog? The closing that would pop up the dialog for the next one?
Looks like focusNodes may be the solution to implement this:
https://api.flutter.dev/flutter/widgets/FocusNode-class.html