How to navigate without context in Flutter?
Navigation is an integral part of any App. Flutter makes it really easy to navigate to any screen by using simple navigator functions like Push and Pop.
To push:
Navigator.push(
context,
MaterialPageRoute(builder: (context) => SecondRoute()),...
divyanshub024.hashnode.dev2 min read