beamer 0.4.0 beamer: ^0.4.0 copied to clipboard
Route through page stacks and URLs using the Navigator 2.0 features effortlessly
Beamer #
Handle your application routing, synchronize it with browser URL and more. Beamer
uses the power of Navigator 2.0 features and implements all the underlying logic for you.
Table of Contents #
- Key Concepts
- Examples
- Books
- Deep Location
- Sibling Routers (WIP)
- Nested Routers (WIP)
- Usage
- Contributing
Key Concepts #
The key concept of Beamer is a BeamLocation
which represents a stack of one or more pages. You will be extending BeamLocation
to define your app's locations to which you can then beam to using
Beamer.of(context).beamTo(MyLocation())
or
context.beamTo(MyLocation())
You can think of it as teleporting / beaming to another place in your app. Similar to Navigator.of(context).pushReplacementNamed('/my-route')
, but Beamer is not limited to a single page, nor to a push per se. You can create an arbitrary stack of pages that gets build when you beam there. Using Beamer can feel like using many of Navigator
's push/pop
methods at once.
Examples #
Books #
This is a recreation of books example from this article where you can learn a lot about Navigator 2.0. See Example for full application code of this example.
Deep Location #
Sibling Routers #
Coming soon...
Nested Routers #
Coming soon...
Usage #
Using Beamer Around Entire App #
In order to use Beamer on your entire app, you must wrap MaterialApp
with Beamer
to which you pass your BeamLocation
s. Optionally, if you're using Beamer in Flutter web, you may pass notFoundPage
which will be shown when URI coming from browser is not among the ones you defined in your BeamLocation
s.
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Beamer(
initialLocation: HomeLocation(),
beamLocations: [
HomeLocation(),
BooksLocation(),
],
notFoundPage: Scaffold(body: Center(child: Text('Not found'))),
app: MaterialApp(),
);
}
}
An example of above book example's BeamLocation
s would be:
class HomeLocation extends BeamLocation {
@override
List<BeamPage> get pages => [
BeamPage(
key: ValueKey('home'),
page: HomeScreen(),
),
];
@override
String get pathBlueprint => '/';
}
class BooksLocation extends BeamLocation {
BooksLocation() : super();
BooksLocation.withParameters({
Map<String, String> path,
Map<String, String> query,
}) : super.withParameters(path: path, query: query);
@override
List<BeamPage> get pages => [
...HomeLocation().pages,
BeamPage(
key: ValueKey('books-${queryParameters['title'] ?? ''}'),
page: BooksScreen(
titleQuery: queryParameters['title'] ?? '',
),
),
if (pathParameters.containsKey('id'))
BeamPage(
key: ValueKey('book-${pathParameters['id']}'),
page: BookDetailsScreen(
book: books
.firstWhere((book) => book['id'] == pathParameters['id']),
),
),
];
@override
String get pathBlueprint => '/books/:id';
}
Using Beamer Deeper in Widget Tree #
Coming soon...
General Notes #
When defining your BeamLocation
, you need to implement 2 getters; pages
and pathBlueprint
. pages
represent a stack that will be built by Navigator
when you beam there, and pathBlueprint
is there for the Beamer to decide which BeamLocation
corresponds to an URL coming from browser.
As we can see, BeamLocation
can take query and path parameters from URI. (the :
is necessary in pathBlueprint
if you might get path parameter from browser).
HomeScreen
, BooksScreen
and BookDetailsScreen
are arbitrary Widgets
that represent your app screens / pages.
BeamPage
creates MaterialPageRoute
, but you can extends BeamPage
and override createRoute
to make your own implementation instead. The key
is important for Navigator
to optimize its rebuilds.
Contributing #
This package is still in early stages. To see the upcoming features, check the Issue board.
If you notice any bugs not present in issues, please file a new issue. If you are willing to fix or enhance things yourself, you are very welcome to make a pull request. Before making a pull request;
- if you wish to solve an existing issue, please let us know in issue comments first
- if you have another enhancement in mind, create an issue for it first so we can discuss your idea