galileo_route 6.0.1 copy "galileo_route: ^6.0.1" to clipboard
galileo_route: ^6.0.1 copied to clipboard

A powerful, isomorphic routing library for Dart. It is mainly used in the galileo framework, but can be used in Flutter and on the Web.

example/main.dart

import 'dart:math';

import 'package:galileo_route/galileo_route.dart';

main() {
  final router = Router();

  router.get('/whois/~:user', () {});

  router.get('/wild*', () {});

  router.get('/ordinal/int:n([0-9]+)st', () {});

  print(router.resolveAbsolute('/whois/~thosakwe').first.allParams);
  print(router.resolveAbsolute('/wild_thornberrys').first.route.path);
  print(router.resolveAbsolute('/ordinal/1st').first.allParams);

  router.get('/users', () {});

  router.post('/users/:id/timeline', (String id) {});

  router.get('/square_root/:id([0-9]+)', (String n) {
    return {'result': pow(int.parse(n), 0.5)};
  });

  // You can also have parameters auto-parsed.
  //
  // Supports int, double, and num.
  router.get('/square_root/int:id([0-9]+)', (int n) {
    return {'result': pow(n, 0.5)};
  });

  router.group('/show/:id', (router) {
    router.get('/reviews', (id) {
      return someQuery(id).reviews;
    });

    // Optionally restrict params to a RegExp
    router.get('/reviews/:reviewId([A-Za-z0-9_]+)', (id, reviewId) {
      return someQuery(id).reviews.firstWhere((r) => r.id == reviewId);
    });
  });
}

SomeQuery someQuery(id) => SomeQuery();

class SomeQuery {
  List<SomeQueryReview> get reviews => [
        SomeQueryReview('fake'),
        SomeQueryReview('data'),
      ];
}

class SomeQueryReview {
  final String id;

  SomeQueryReview(this.id);
}
1
likes
40
pub points
4%
popularity

Publisher

unverified uploader

A powerful, isomorphic routing library for Dart. It is mainly used in the galileo framework, but can be used in Flutter and on the Web.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

galileo_combinator, meta, path, string_scanner

More

Packages that depend on galileo_route