Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: variable front page height #73

Merged
merged 16 commits into from
Feb 22, 2021
4 changes: 2 additions & 2 deletions lib/scaffold.dart
Original file line number Diff line number Diff line change
Expand Up @@ -508,9 +508,9 @@ class BackdropScaffoldState extends State<BackdropScaffold>
behavior: HitTestBehavior.opaque,
child: Column(
children: <Widget>[
// if subHeaderAlwaysActive then do not apply inactiveOverlayColor for area with _headerHeight
// if subHeaderAlwaysActive then do not apply frontLayerScrim for area with _subHeaderHeight
widget.subHeader != null && widget.subHeaderAlwaysActive
? Container(height: _headerHeight)
? Container(height: _subHeaderHeight)
daadu marked this conversation as resolved.
Show resolved Hide resolved
: Container(),
Expanded(
child: Container(
Expand Down