fluro 1.5.1 modified

Luke 1e9c1e46d3 Merge pull request #12 from mit-mit/updateandroid 8 lat temu
example 432153800f Make example app build for android 8 lat temu
lib b767b5ca0b Refactor route Handlers (#6) 8 lat temu
scripts 3be3c6ce9c change permissions on setup script 8 lat temu
test d80bef62fd license updates 8 lat temu
.gitignore 32d91dc3fa rename. add example project 8 lat temu
.travis.yml aeaa51e951 add code coverage to CI. add codecov badge 8 lat temu
LICENSE d80bef62fd license updates 8 lat temu
README.md b767b5ca0b Refactor route Handlers (#6) 8 lat temu
pubspec.yaml 4613b9ab82 bump pubspec 8 lat temu

README.md



The brightest, hippest, coolest router for Flutter.

Version Build Status Coverage

Features

  • Simple route navigation
  • Function handlers (map to a function instead of a route)
  • Wildcard parameter matching
  • Querystring parameter parsing
  • Common transitions built-in
  • Simple custom transition creation

Version compatability

In general we try not to introduce breaking changes but version 1.1 did introduce a breaking change in order to support function handlers. As such, you will need to change all of your route handler definitions to use the new Handler class. The RouteHandler definition has now been removed.

Swapping out the handlers should be as simple as changing:

RouteHandler usersHandler = (Map<String, String> params) {}

to

var usersHandler = new Handler(handlerFunc: (BuildContext context, Map<String, dynamic> params) {});

Getting started

You should ensure that you add the router as a dependency in your flutter project.

dependencies:
 fluro: "^1.1.0"

You can also reference the git repo directly if you want:

dependencies:
 fluro:
   git: git://github.com/goposse/fluro.git

You should then run flutter packages upgrade or update your packages in IntelliJ.

Example Project

There is a pretty sweet example project in the example folder. Check it out. Otherwise, keep reading to get up and running.

Setting up

First, you should define a new Router object by initializing it as such:

final router = new Router();

It may be convenient for you to store the router globally/statically so that you can access the router in other areas in your application.

After instantiating the router, you will need to define your routes and your route handlers:

var usersHandler = new Handler(handlerFunc: (BuildContext context, Map<String, dynamic> params) {
  return new UsersScreen(params["id"]);
});

void defineRoutes(Router router) {
  router.define("/users/:id", handler: usersHandler);
}

In the above example, the router will intercept a route such as /users/1234 and route the application to the UsersScreen passing the value 1234 as a parameter to that screen.

Navigating

You can use the Router with the MaterialApp.onGenerateRoute parameter via the Router.generator function. To do so, pass the function reference to the onGenerate parameter like: onGenerateRoute: router.generator.

You can then use Navigator.push and the flutter routing mechanism will match the routes for you.

You can also manually push to a route yourself. To do so:

router.navigateTo(context, "/users/1234",
    transition: TransitionType.fadeIn);



Fluro is a Posse Production.