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
Merged
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.5.0]

* **BREAKING**: requires Dart >= 2.3
* `BackdropScaffold`: added `frontLayerActiveFactor` [#73][]

[#73]: https://github.com/fluttercommunity/backdrop/pull/73

## [0.4.7] - 28 October 2020

* `BackdropScaffold`: added `scaffoldKey` [https://github.com/fluttercommunity/backdrop/pull/64]
Expand Down
84 changes: 84 additions & 0 deletions example/lib/menu_variable_height_front_layer.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
import 'package:backdrop/backdrop.dart';
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

/// Showcase for a Material Backdrop acting as a menu.
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
int _currentIndex = 0;

final List<Widget> _pages = [
_TallPage(),
...List.generate(9, (i) => _ShortPage(i + 1)),
];

final _nav = List.generate(
10,
(i) => ListTile(
title: Text('Menu: open page #$i',
style: TextStyle(color: Colors.white))));

double get _heightFactor => _currentIndex == 0 ? 1 : (.1 * _currentIndex);

@override
Widget build(BuildContext context) => MaterialApp(
title: 'Backdrop Demo',
home: BackdropScaffold(
appBar: BackdropAppBar(title: Text("AppBar is OK 👍")),
frontLayer: _pages[_currentIndex],
stickyFrontLayer: true,
backLayerScrim: Colors.red.withOpacity(0.5),
frontLayerScrim: Colors.green.withOpacity(0.5),
frontLayerActiveFactor: _heightFactor,
subHeader: BackdropSubHeader(title: Text('Subheader')),
backLayer: BackdropNavigationBackLayer(
items: _nav,
onTap: (int position) =>
{setState(() => _currentIndex = position)},
separatorBuilder: (_, __) => _MyDivider())));
}

class _MyDivider extends StatelessWidget {
const _MyDivider();

@override
Widget build(BuildContext context) =>
Divider(indent: 16, endIndent: 16, color: Colors.white);
}

/// When the front layer doesn't have much content, its height while revealed
/// is configurable via [BackdropScaffold.frontLayerActiveFactor].
class _ShortPage extends StatelessWidget {
final int index;

_ShortPage(this.index);

@override
Widget build(BuildContext context) => Center(
child: Column(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
Text("Page #$index is open with desired height."),
const Flexible(child: FractionallySizedBox(heightFactor: 0.1)),
Text("It looks better! 😄"),
const Flexible(child: FractionallySizedBox(heightFactor: 0.1)),
Text("But Page #0 still needs to be tall."),
]));
}

/// A front layer with a lot of content should reveal to show as much as possible.
class _TallPage extends StatelessWidget {
@override
Widget build(BuildContext context) => ListView(
children: List.generate(
20,
(index) => Padding(
padding: const EdgeInsets.all(16),
child: Text("Tall page #0, lots of content 👍"))));
}
Loading