'autofill container using keyboard digits

I am continuously trying to fill container by pressing keyboard digits I want to autofill that circular shape container to autofill container is not working. What should I do? Please tell me.

enter image description here



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