Deep Linking for Flutter Web In this article I will show you how to have proper URL navigation for your application. Open links to specific pages, protected routes and custom transitions. TLDR The final source here and an online demo. Setup Create a new flutter project called “flutter\ deep\ linking” Open that folder up in VSCode. Update your “pubspec.yaml” with the following: Step 1 Create a file at “lib/ui/home/screen.dart” and add the following: Update your “lib/main.dart” with the following: Run your application and you should see the following: Step 2 Now we need to grab the url the user…