Skip to content

Instantly share code, notes, and snippets.

@kitoko552
Created February 5, 2020 07:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kitoko552/8b5b7863a960539c6c6c37a8c1ac00c1 to your computer and use it in GitHub Desktop.
Save kitoko552/8b5b7863a960539c6c6c37a8c1ac00c1 to your computer and use it in GitHub Desktop.
final navigatorKey = GlobalKey();
// ...
// Widget構成時
Navigator(
key: navigatorKey,
onGeneratedRoute: (settings) => route,
);
// ...
// 遷移時
navigatorKey.currentState.push(route);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment