One route idea
In Flutter, a screen is called a route. A route is just a widget that fills the phone screen.
For simple app demos, use Navigator.push() to open a route and Navigator.pop() to go back.
Why this matters
Your project should not feel like one long page. Recruiters expect common flows like home to details, list to item, or login to dashboard.
In this lesson, keep routing simple. Use Navigator for normal screen changes. Save go_router for apps that need deep links, web URLs, or multiple navigation stacks.