File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import 'backdrop.dart';
18
18
import 'colors.dart' ;
19
19
import 'home.dart' ;
20
20
import 'login.dart' ;
21
- import 'menu_page .dart' ;
21
+ import 'category_menu_page .dart' ;
22
22
import 'model/product.dart' ;
23
23
import 'supplemental/cut_corners_border.dart' ;
24
24
@@ -36,7 +36,7 @@ class _ShrineAppState extends State<ShrineApp> {
36
36
home: Backdrop (
37
37
currentCategory: _currentCategory,
38
38
frontPanel: HomePage (category: _currentCategory),
39
- backPanel: MenuPage (
39
+ backPanel: CategoryMenuPage (
40
40
currentCategory: _currentCategory,
41
41
onCategoryTap: _onCategoryTap,
42
42
),
Original file line number Diff line number Diff line change @@ -18,12 +18,12 @@ import 'package:meta/meta.dart';
18
18
import 'model/product.dart' ;
19
19
import 'colors.dart' ;
20
20
21
- class MenuPage extends StatelessWidget {
21
+ class CategoryMenuPage extends StatelessWidget {
22
22
final Category currentCategory;
23
23
final ValueChanged <Category > onCategoryTap;
24
24
final List <Category > _categories = Category .values;
25
25
26
- const MenuPage ({
26
+ const CategoryMenuPage ({
27
27
Key key,
28
28
@required this .currentCategory,
29
29
this .onCategoryTap,
You can’t perform that action at this time.
0 commit comments