'autofill container using keyboard digits
Solution 1:[1]
u can specify two more parameter one for focusNode of current textfield & another one for focus u want to change . you can have textField with icon where you can show the ui as per your screenshot . e.g.
textField(
text: '1stelement',
focusNode: // your focus node,
nextFocusNode: // your next field focus node
),
now u can use :
FocusScope.of(context).requestFocus(nextFocus);
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Tasnuva Tavasum oshin |

