Flutter Navigator 2.0

Nov 8 2022 · Dart 2.17.3, Flutter 3.0.2, Android Studio 2020.3

Part 3: Use the Navigation

12. Display the Login & Sign-up Pages

Episode complete

Play next episode

Next
About this episode
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 11. Display the Splash Screen Next episode: 13. Navigate to the Home Page

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You’re accessing parts of this content for free, with some sections shown as obfuscated text.

Heads up... You’re accessing parts of this content for free, with some sections shown as obfuscated text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

Episode 12 - Display the Login page and Signup Page

Now that we have displayed splash screen successfully. We want to display the login screen after 2 seconds of delay. Let us create the condition in our pages array to display the login page.

 if(appStateManager.isInitialized && !appStateManager.isLogin) LoginScreen.page(),
    Provider.of<AppStateManager>(context, listen: false).initislizeApp();
if (appStateManager.isInitialized && appStateManager.isSignUp) SignupScreen.page(),
  Provider.of<AppStateManager>(context, listen: false).onsignUpTapper(true);