# Setting up auto route

For this project, we are going to use auto\_route for routing between screens as named routes. So to begin first add it on your "pubspec.yaml"

```
  dependencies: 
    auto_route: ^0.6.9
    
  dev_dependencies:
    auto_route_generator: ^0.6.10
    build_runner: ^1.11.1
```

So auto route uses code generation if you're new to code generation in dart check out this [article](https://medium.com/flutter-community/part-1-code-generation-in-dart-the-basics-3127f4c842cc).

After that let's go ahead and create our first page and create our router.

####
