skip to Main Content

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 https://github.com/Akash-ptl/your_service
This is the problem i get

2

Answers


  1. 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.

    Login or Signup to reply.
  2. read this https://developer.android.com/training/keyboard-input/visibility
    in a nut shell you need to change your AndroidManifest.xml like this

    <activity
           ...
            android:windowSoftInputMode="stateVisible">
    

    don’t set it to android:windowSoftInputMode="adjustResize"

    Depends on your requirement though. Read the documentation above.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search