Flutter – How to prevent app from closing on swipe back
In a screen of my flutter app I have some buttons that allow me to open new pages, created with the following code: @override Widget build(BuildContext context) { return ElevatedButton.icon( onPressed: () { Navigator.of(context).push( MaterialPageRoute( builder: (BuildContext context) { return…