i am not able to tap on textfield it's keep refreshing when i click on the textfield.
try all the solution which i get from stackoverflow but still not solving this problem..
i am sharing full project github link.
CodePudding user response:
add this in the Scaffold
widget of your screen:
resizeToAvoidBottomInset: false,
CodePudding user response:
Everytime the UI gets refreshed, the snapshot.connectionState is set to ConnectionState.waiting. Therefore, the CircularProgressIndicator() gets displayed.
You can try this by doing a setState() somewhere in your code.
Solution: Just wait for the connectionState only one time when you load the page.