Home > database >  i am not able to tap on textfield it's keep refreshing when i click on the textfield
i am not able to tap on textfield it's keep refreshing when i click on the textfield

Time:12-11

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.

This is my project link This is the problem i get

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.

Here is the Error.

  • Related