[SOLVED] Unhandled Exception: Navigator operation requested with a context that does not include a Navigator.
Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now This happens because when you do Navigator.of(context), it will start from the widget associated to the context used. And then go upward in the widget tree until it either find a Navigator or there’s no more widget. So, it throws an Error Navigator operation requested with a context that does not include a Navigator. So,
Read more