FilledStacks / flutter-tutorials

The repo contains the source code for all the tutorials on the FilledStacks Youtube channel.
MIT License
4.76k stars 1.76k forks source link

Latest Flutter release breaks NavigationService #65

Closed thedigitalpro closed 4 years ago

thedigitalpro commented 4 years ago

Hey Dane

The latest 1.17 release of flutter breaks the navigation service. The following error is returned:

lib/services/navigation_service.dart:9:40: Error: This expression has type 'void' and can't be used. return _navigationKey.currentState.pop();

FilledStacks commented 4 years ago

Hey @thedigitalpro , You can either remove the return statement or change the function signature to void or both.