Skip to content

Commit 889869b

Browse files
authored
[104] Merge sync. (#27)
1 parent 36a82d3 commit 889869b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

mdc_100_series/lib/app.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ class _ShrineAppState extends State<ShrineApp> {
3535
title: 'Shrine',
3636
home: Backdrop(
3737
currentCategory: _currentCategory,
38-
frontPanel: HomePage(category: _currentCategory),
39-
backPanel: CategoryMenuPage(
38+
frontLayer: HomePage(category: _currentCategory),
39+
backLayer: CategoryMenuPage(
4040
currentCategory: _currentCategory,
4141
onCategoryTap: _onCategoryTap,
4242
),

mdc_100_series/lib/backdrop.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,15 +222,15 @@ class _BackdropState extends State<Backdrop>
222222
width: 72.0,
223223
child: IconButton(
224224
padding: EdgeInsets.only(left: 20.0),
225-
onPressed: _toggleBackdropPanelVisibility,
225+
onPressed: _toggleBackdropLayerVisibility,
226226
icon: brandedIcon,
227227
),
228228
),
229229
widget.frontTitle,
230230
],
231231
),
232232
backTitle: IconButton(
233-
onPressed: _toggleBackdropPanelVisibility,
233+
onPressed: _toggleBackdropLayerVisibility,
234234
icon: Icon(Icons.close),
235235
),
236236
),

0 commit comments

Comments
 (0)