How to fix multiple navigations in flutter when double clicked on button How to fix multiple navigations in flutter when double clicked on button dart dart

How to fix multiple navigations in flutter when double clicked on button


If I got you right then you can try this logic.

bool flag = true; // member variable// this goes in your onPressed() method of the buttonif (flag) {  flag = false;  // enable click to take user to home screen}