Flutter: Auto cursor on input text field

I have multiple pages, so when I enter one of them, the cursor should be automatically on input textfield, Doesnt matter how many textfields are there, I need to set on 1

INSTEAD OF THIS:

enter image description here

THIS SHOULD BE:

enter image description here

>Solution :

TextField(
          autofocus: true,
        ),

Leave a Reply