Named Routes in flutter for navigating to another screen
To navigate from one screen to another we can either use MaterialPageRoute
or pushNamed
which uses Named routes.
In Named routes you give each new screen a Name which is a string and thus it is very useful…