go-router-authentication icon indicating copy to clipboard operation
go-router-authentication copied to clipboard

Flutter Authentication using go_router & BLoC

go_router Authentication

This is an example shows how to use go_router for authentication with BLoC as state management, The purpose of the go_router package is that it is A declarative routing package for Flutter that uses the Router API to provide a convenient, url-based API for navigating between different screens and reduce complexity, regardless of the platform you're targeting (mobile, web, desktop), You can define URL patterns, navigate using a URL, handle deep links, and a number of other navigation-related scenarios.

go_router and BLoC

Table of Contents

  • Requirements
  • Intro
  • Screenshots
  • Implementation
  • Conclusion?

Requirements

  • bloc for state management
  • go_router for navigation
  • hive as local storage
  • freezed using as code generation for immutable classes
  • dartz for functional programming

Intro

This example is built using go_router 6.2.0. Build authentication example with go_router. Instead of using buildBody and currentIndex for routing, we’ll be using go router to navigate between screens.