Skip to content

Commit 7bfaaff

Browse files
committed
create coordinator and two main pages
1 parent a60300c commit 7bfaaff

File tree

5 files changed

+21
-23
lines changed

5 files changed

+21
-23
lines changed

lib/main.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import 'package:flutter/material.dart';
2+
import 'package:flutter_ui_nice/page/navigation/NavigationPageOne.dart';
23
import 'package:flutter_ui_nice/page/page_const.dart';
34
import 'const/string_const.dart';
45
import 'const/color_const.dart';
@@ -38,6 +39,8 @@ class MyApp extends StatelessWidget {
3839
FEED_PAGES[12]: (context) => FeedPageThirteen(),
3940
SHOPPING_PAGES[17]: (context) => ShopPageEighteen(),
4041
SHOPPING_PAGES[18]: (context) => ShopPageNineteen(),
42+
43+
//NAVIGATION_PAGES[0]: (context) => ,
4144
//FIXME there are other pages to jump with 'page_str_const.dart',there should be make by manager
4245
},
4346
onUnknownRoute: (setting) =>

lib/page/navigation/NavigationPageOne.dart

Lines changed: 0 additions & 23 deletions
This file was deleted.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import 'package:flutter/material.dart';
2+
3+
class Coordinator extends StatefulWidget {
4+
@override
5+
_Coordinator createState() => _Coordinator();
6+
}
7+
8+
class _Coordinator extends State<Coordinator> {
9+
10+
@override
11+
void initState() {
12+
super.initState();
13+
}
14+
@override
15+
Widget build(BuildContext context) {
16+
return null;
17+
}
18+
}

lib/page/navigation/navigation1/widgets/main_page.dart

Whitespace-only changes.

lib/page/navigation/navigation1/widgets/statistics_page.dart

Whitespace-only changes.

0 commit comments

Comments
 (0)