Backdrop implementation in flutter.
This widget is in active development. Any contribution, idea, criticism or feedback is welcomed.
Use BackdropScaffold
instead of the standard Scaffold
in your app.
A backLayer
and a frontLayer
have to be defined for the backdrop to work.
BackdropScaffold(
appBar: BackdropAppBar(
title: Text("Backdrop Example"),
actions: <Widget>[
BackdropToggleButton(
icon: AnimatedIcons.list_view,
)
],
),
backLayer: Center(
child: Text("Back Layer"),
),
frontLayer: Center(
child: Text("Front Layer"),
),
)
To use backdrop for navigation, use the provided BackdropNavigationBackLayer
as backLayer
.
The BackdropNavigationBackLayer
contains a property items
representing the list elements shown on the back layer. The front layer has to be "manually" set depending on the current index, which can be accessed with the onTap
callback.
int _currentIndex = 0;
final List<Widget> _pages = [Widget1(), Widget2()];
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Backdrop Demo',
home: BackdropScaffold(
appBar: BackdropAppBar(
title: Text("Navigation Example"),
actions: <Widget>[
BackdropToggleButton(
icon: AnimatedIcons.list_view,
)
],
),
stickyFrontLayer: true,
frontLayer: _pages[_currentIndex],
backLayer: BackdropNavigationBackLayer(
items: [
ListTile(title: Text("Widget 1")),
ListTile(title: Text("Widget 2")),
],
onTap: (int position) => {setState(() => _currentIndex = position)},
),
),
);
}
To access backdrop related functionalities, use Backdrop.of(context)
to get underlying BackdropScaffoldState
.
BackdropScaffoldState
exposes various properties and methods like:
- properties
animationController -> AnimationController
scaffoldKey -> GlobalKey<ScaffoldState>
isBackLayerConcealed -> bool
isBackLayerRevealed -> bool
- methods
fling()
concealBackLayer()
revealBackLayer()
Note:
Backdrop
is anInheritedWidget
and therefore likeScaffold.of
,Theme.of
andMediaQuery.of
, theBuildContext context
passed toBackdrop.of(context)
should be of aWidget
that is under theBackdropScaffold
in the "widget tree". In other words,Backdrop.of
called inside a widget where theBackdropScaffold
is initalized will not work explicitly, since thecontext
passed is of the widget that will buildBackdropScaffold
therefore aboveBackdropScaffold
. This can be solved by either making a seperateWidget
whereBackdrop.of
needs to be used and make it the "child" ofBackdropScaffold
or wrap theBackdrop.of
usage aroundBuilder
widget so that the "correct"context
(fromBuilder
) is passed toBackdrop.of
. This answere on SO and FWotW video on Builder gives a very good idea of how and whyBuilder
works in later case.
For more information, check out sample code in the example directory, demo app with use-cases and code for it and API references generated by pub.dev.
Check proposal documents for v1.0 and web&desktop milestones before you begin with any contibution.
- You'll need a GitHub account.
- Fork the repository.
- Pick an issue to work on from issue tracker.
- Implement it.
- Send merge request.
- Star this project.
- Become a hero!!
Please file feature requests and bugs at the issue tracker.
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!