routefly 1.0.9 copy "routefly: ^1.0.9" to clipboard
routefly: ^1.0.9 copied to clipboard

Folder-based route manager inspired by NextJS and created by the Flutterando community.

example/README.md

Routefly #

Routefly is a folder-based route manager inspired by NextJS and created by the Flutterando community. It allows you to automatically create routes in your Flutter app by simply organizing your code files within specific directories. When a file is added to the "pages" directory, it's automatically available as a route. Just add the appropriate folder structure inside the "lib/app" folder.

Example:

  • /lib/app/dashboard/dashboard_page.dart => /dashboard
  • /lib/app/users/users_page.dart => /users
  • /lib/app/users/[id]/user_page.dart => /users/2

Installation and Initialization #

To get started with Routefly, follow these steps:

  1. Add the Routefly package to your Flutter project:
   flutter pub add routefly
  1. Modify your MaterialApp or CupertinoApp by replacing it with MaterialApp.router or CupertinoApp.router. Configure the router using the Routefly.routerConfig method:
import 'package:routefly/routefly.dart';

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp.router(
      routerDelegate: Routefly.routerConfig(
        routes: routes,
      ),
    );
  }
}
  1. Organize your code by creating folders that contain a *_page.dart file for each page. For example:
.
└── app/
    ├── product/
    │   └── product_page.dart
    └── user/
        └── user_page.dart
  1. Generate routes using the following command:
dart pub run routefly

Run this command every time you create a new folder with a page to generate the routes again. You can also use the --watch flag to automatically generate routes when adding a new page to a folder.

Routefly provides simple navigation methods:

Routefly.navigate('path'): Replaces the entire route stack with the requested path.
Routefly.push('path'): Adds a route to the route stack.
Routefly.pop(): Removes the top route from the route stack.
Routefly.replace('path'): Replaces the last route in the stack with the requested path.

Dynamic Routes #

Dynamic Routes allow you to create routes from dynamic data. You can use dynamic segments enclosed in brackets, such as [id] or [slugs]. For example:

Create a page using a dynamic segment: lib/app/users/[id]/user_page.dart. This generates the route path /users/[id].

Use navigation commands to replace the dynamic segment, like Routefly.push('/users/2').

Access the dynamic parameter (id) on the page using Routefly.query['id'].

You can also access segment parameters using Routefly.query.params, e.g., Routefly.query.params['search'] for /product?search=Text.

Dynamic Routes #

When you don't know the exact segment names ahead of time and want to create routes from dynamic data, you can use Dynamic Segments that are filled in at request time, just put the dynamic segment in the folder name in brackets. Ex: [id], [slugs]...

Imagine that you want to access a user for editing that needs an id. Create the page using the dynamic segment: lib/app/users/[id]/user_page.dart. This will generate the route path /users/[id].

Custom Transition #

To create custom route transitions, define a routeBuilder function in your page file. This allows you to use custom transitions based on PageRouteBuilder. For example:

Route routeBuilder(BuildContext context, RouteSettings settings) {
  return PageRouteBuilder(
    pageBuilder: (_, a1, a2) => const UserPage(),
    transitionsBuilder: (_, a1, a2, child) {
      return FadeTransition(opacity: a1, child: child);
    },
  );
}

If you have any questions or need assistance with the package, feel free to reach out to the Flutterando community.

Happy routing with Routefly!

162
likes
130
pub points
86%
popularity

Publisher

verified publisherflutterando.com.br

Folder-based route manager inspired by NextJS and created by the Flutterando community.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

ansicolor, flutter, meta

More

Packages that depend on routefly