Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Swipe back in flutter. without any button

How Can I swipe for back in Flutter? not tap back button.
Without any button……
Just swipe from left to right. And go to the back page
enter image description here

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

you can wrap your screen widget with gesture detector and on detecting swipe left you can pop the screen like this

GestureDetector(
  onPanUpdate: (details) {
    if (details.delta.dx > 0) {
      Navigator.of(context).pop();
    }
  },
  child: Scaffold(
    body: ///your body
  ),
);

Edit:

The above solution was the one that came to my mind and i got another answer on stack-overflow maybe that one is the correct way to do it here is the answer
https://stackoverflow.com/a/55577584/14466860

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading