Flutter: Auto cursor on input text field
Problem Description:
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:
THIS SHOULD BE:
Solution – 1
TextField(
autofocus: true,
),