diff --git a/mdc_100_series/lib/app.dart b/mdc_100_series/lib/app.dart index 6ba3102be4..b6859ad565 100644 --- a/mdc_100_series/lib/app.dart +++ b/mdc_100_series/lib/app.dart @@ -35,8 +35,8 @@ class _ShrineAppState extends State { title: 'Shrine', home: Backdrop( currentCategory: _currentCategory, - frontPanel: HomePage(category: _currentCategory), - backPanel: CategoryMenuPage( + frontLayer: HomePage(category: _currentCategory), + backLayer: CategoryMenuPage( currentCategory: _currentCategory, onCategoryTap: _onCategoryTap, ), diff --git a/mdc_100_series/lib/backdrop.dart b/mdc_100_series/lib/backdrop.dart index d141c3b1d4..54b141b34d 100644 --- a/mdc_100_series/lib/backdrop.dart +++ b/mdc_100_series/lib/backdrop.dart @@ -222,7 +222,7 @@ class _BackdropState extends State width: 72.0, child: IconButton( padding: EdgeInsets.only(left: 20.0), - onPressed: _toggleBackdropPanelVisibility, + onPressed: _toggleBackdropLayerVisibility, icon: brandedIcon, ), ), @@ -230,7 +230,7 @@ class _BackdropState extends State ], ), backTitle: IconButton( - onPressed: _toggleBackdropPanelVisibility, + onPressed: _toggleBackdropLayerVisibility, icon: Icon(Icons.close), ), ),