Think about extremly simple flutter application that contains one Container widget on the screen and GestureDetector on it.
main goes to myApp, main and myApp widgets are in the same dart file. myApp goes to HomePage which is a different dart file. HomePage has one Container and GestureDetector widgets.
GestureDetector's onTap function is : print('pressed');
"pressed" appears for the first time when container tapped. The problem is when I tapped for several times on this container. "pressed" appears after a delay. Sometimes I see it after compilers' message.
uid=10153(com.example.vocabulary_master_8) 1.ui identical 4 lines
Here is my flutter doctor -v finding.
[!] Android Studio (version 4.1.0)
• Android Studio at C:\Program Files\Android\Android Studio
X Flutter plugin not installed; this adds Flutter specific functionality.
X Dart plugin not installed; this adds Dart specific functionality.
• Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01)
After I upgrade Android Studio to 4.1.2 and Nexus 6 API 30, I started to get this error and delay.
Could you please somebody help? Best regards.