Search code examples
flutterdartclick

Flutter on real device start working after the second click (touch)


When I'm testing the same app on the emulator, it works fine. It responds to the first touch.

However, on the real device, the first touch doesn't work.

Thanks


Solution

  • The problem was that I was using CustomTheme widget above Material, to customize the theme according to the state of the app.

    The first touch was on the CustomTheme, and then it starts to get the clicks on Material widget.

    Solved!