Flutter navigation done right with fluro
Fluro is a Flutter routing library that adds flexible routing options like wildcards, named parameters and clear route definitions.
fluro is an open-source navigation & routing library for Flutter mobile app development, with 3,713★ on GitHub and last updated on 2023-03-22. This guide covers what fluro does, why it matters in 2026, how to add it to your project, when to reach for it, and how it compares to the alternatives — plus a quick FAQ.
What is fluro?
Fluro is a Flutter routing library that adds flexible routing options like wildcards, named parameters and clear route definitions. It focuses on structuring screens, routes, and deep links. The project lives at lukepighetti/fluro and is maintained by lukepighetti.
Why fluro is worth knowing in 2026
fluro carries 3,713 GitHub stars, 409 forks, 43 open issues. It has been around since 2017, and is mature and stable. For a Navigation option, that combination of adoption and upkeep usually means a healthy community, production usage, and plenty of examples to learn from — the things that make a dependency safe to build on.
Installing fluro
Add the package to your pubspec.yaml:
dependencies:
fluro: ^latest
Then fetch it and import it in your Dart code:
flutter pub get
import 'package:fluro/fluro.dart';
Check the package’s example/ directory and its GitHub repo for the exact API — fluro is versioned there with full docs so you always integrate against the current release.
When should you use fluro?
Reach for fluro when:
- you need declarative, URL-driven routing
- you’re handling deep links or nested navigation
- you want type-safe routes
It’s especially relevant if your project touches flutter, flutter-routing, parameters, router, routing.
fluro vs. the alternatives
If you’re weighing options in the Navigation space, these are the other projects developers most often compare fluro against:
- Flutter navigation done right with lantern
- Flutter navigation done right with google_nav_bar
- Flutter navigation done right with luci-mobile
- Flutter navigation done right with flow_builder
There’s no single winner — the right pick depends on your app’s size, your team’s familiarity, and your performance budget. Browse the full Navigation collection to compare them side by side.
Frequently asked questions
Is fluro free to use?
Yes. fluro is open source and free to use in your Flutter projects. You can view the source, report issues, and contribute on GitHub.
Does fluro work on both iOS and Android?
fluro is built for Flutter, so it targets iOS and Android from a single codebase, and typically web and desktop too depending on the project’s platform support.
How popular is fluro?
As of 2026, fluro has around 3,713 stars and 409 forks on GitHub, which puts it among the more widely used options in the Navigation space.
What are good alternatives to fluro?
Popular alternatives in the Navigation category include lantern, google-nav-bar, luci-mobile. The best choice depends on your app’s size, team, and performance needs.
Resources & links
- GitHub: lukepighetti/fluro
- Video tutorials: search YouTube for fluro
Part of FlutterCook — 500 hands-on guides to the best open-source Flutter libraries, UI kits, and apps. Explore the live GitHub trends or browse YouTube guides.