How to Redirect to a New Page on Button Click in Flutter code example
Example: how to open page with button flutter
// Within the `FirstRoute` widget
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => SecondRoute()),
);
}