flouter 0.2.0 copy "flouter: ^0.2.0" to clipboard
flouter: ^0.2.0 copied to clipboard

A Flutter router that is based navigator 2.0 API and use Regexp to do path matching.

example/lib/main.dart

import 'package:flouter/flouter.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(BooksApp());
}

class BooksApp extends StatefulWidget {
  @override
  State<StatefulWidget> createState() => _BooksAppState();
}

class _BooksAppState extends State<BooksApp> {
  final _routerDelegate = FlouterRouterDelegate(
    pageNotFound: (routeInformation) => MaterialPage(
      key: ValueKey('not-found-page'),
      child: Builder(
        builder: (context) => Scaffold(
          body: Center(
            child: Text('Page ${routeInformation.uri.path} not found'),
          ),
        ),
      ),
    ),
    routes: {
      RegExp(r'^/$'): (routeInformation) => HomePage(routeInformation),
      RegExp(r'^/test/([a-z]+)/$'): (routeInformation) =>
          TestPage(routeInformation),
    },
  );

  @override
  Widget build(BuildContext context) {
    return MaterialApp.router(
      title: 'Uri navigator App',
      routerDelegate: _routerDelegate,
      routeInformationParser: FlouterRouteInformationParser(),
    );
  }
}

class HomePage extends Page {
  HomePage(FlouterRouteInformation routeInformation)
      : super(name: routeInformation.uri.path);

  @override
  Route createRoute(BuildContext context) {
    return MaterialPageRoute(
      settings: this,
      builder: (context) {
        return Home();
      },
    );
  }
}

class Home extends StatelessWidget {
  const Home({Key key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(),
      body: Center(
        child: Column(
          children: [
            Text('Home'),
            TextButton(
              onPressed: () {
                FlouterRouteManager.of(context).pushUri(
                    Uri(path: '/test/toto/', queryParameters: {'limit': '12'}));
              },
              child: Text('Test toto'),
            ),
            TextButton(
              onPressed: () {
                FlouterRouteManager.of(context)
                    .pushUri(Uri(path: '/test/12345/'));
              },
              child: Text('Test 12345'),
            ),
          ],
        ),
      ),
    );
  }
}

class TestPage extends Page {
  final FlouterRouteInformation routeInformation;

  TestPage(this.routeInformation) : super(name: routeInformation.uri.path);

  @override
  Route createRoute(BuildContext context) {
    return MaterialPageRoute(
      settings: this,
      builder: (context) {
        final limit =
            int.tryParse(routeInformation.uri.queryParameters['limit'] ?? '-1');
        return Test(
          uri: routeInformation.uri,
          userId: routeInformation.match.group(1),
          limit: limit,
        );
      },
    );
  }
}

class Test extends StatelessWidget {
  final Uri uri;
  final String userId;
  final int limit;

  const Test({
    Key key,
    @required this.uri,
    @required this.userId,
    @required this.limit,
  }) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        automaticallyImplyLeading: true,
      ),
      body: Center(
        child: Column(
          children: [
            Text('test $uri'),
            Text('userId = $userId'),
            Text('limit = $limit'),
            TextButton(
              onPressed: () {
                Navigator.of(context).pop();
              },
              child: Text('Back'),
            ),
          ],
        ),
      ),
    );
  }
}
copied to clipboard
14
likes
130
points
49
downloads

Publisher

verified publisherkleak.dev

Weekly Downloads

2024.09.19 - 2025.04.03

A Flutter router that is based navigator 2.0 API and use Regexp to do path matching.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, meta, provider

More

Packages that depend on flouter