[Question]: Custom focus jump for TextField using tab
Question
Is there any way to make TextFields to jump focus to the next TextField rather then its InputFeatures when pressing tab?
Question Category
Component Usage
What have you tried?
No response
Code Context
Flutter Version
No response
shadcn_flutter Version
No response
Platform
No response
Additional Context
No response
Checklist
- [x] I have searched existing issues and discussions
- [x] I have checked the documentation
- [x] This is a question/support request and not a bug report
No way to do this atm except wrapping the InputFeatures manually. I will try to find a way to do this properly.
Furthermore, is there any way to have browser's suggestions enabled for a TextField inside a FormField?
Furthermore, is there any way to have browser's suggestions enabled for a TextField inside a FormField?
What do you mean by browser suggestions?
I mean suggestion/completions displayed by the browser onto a textfield (usually based on a previous input)
TextField has autofillHints params which you can use to provide the platform with the autofill hints information. Set it with a list containing all the autofill hints your user need. You can see the list here: https://api.flutter.dev/flutter/services/AutofillHints-class.html