Skip to content

Instantly share code, notes, and snippets.

@Vanethos
Created January 13, 2020 08:19
Show Gist options
  • Save Vanethos/7a517a5f3186889d77a4a69109fae79f to your computer and use it in GitHub Desktop.
Save Vanethos/7a517a5f3186889d77a4a69109fae79f to your computer and use it in GitHub Desktop.
/// Navigator key to navigate without a BuildContext
final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
// Add the navigator key to our app
navigatorKey: navigatorKey,
//...
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment