how to go from one screen to another and back to other in flutter without using pop code example
Example: Flutter: Move to a new screen without back
Navigator.pushReplacement(
context,
MaterialPageRoute(builder: (context) => MainPage()),
(Route<dynamic> route) => false,
);