File tree Expand file tree Collapse file tree 12 files changed +212
-4
lines changed Expand file tree Collapse file tree 12 files changed +212
-4
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ class MyApp extends StatelessWidget {
2020 SIGN_UP_PAGES [0 ]: (context) => SignPageOne (),
2121 SIGN_UP_PAGES [1 ]: (context) => SignPageTwo (),
2222 //FIXME there are other pages to jump with 'page_str_const.dart',there should be make by manager
23+
2324 },
2425 onUnknownRoute: (setting) =>
2526 MaterialPageRoute (builder: (context) => EmptyPage ()),
Original file line number Diff line number Diff line change 1+ ///
2+ /// Created by NieBin on 2018/12/25
3+ /// Github: https://github.com/nb312
4+ /// Email: niebin312@gmail.com
5+ ///
6+ import "package:flutter/material.dart" ;
7+
8+ class CameraPageOne extends StatefulWidget {
9+ @override
10+ _CameraState createState () => _CameraState ();
11+ }
12+
13+ class _CameraState extends State <CameraPageOne > {
14+ @override
15+ Widget build (BuildContext context) {
16+ return Scaffold (
17+ appBar: AppBar (
18+ title: Text ("Camera one" ),
19+ ),
20+ body: Text ("Camera page one" ),
21+ );
22+ }
23+ }
Original file line number Diff line number Diff line change 1+ ///
2+ /// Created by NieBin on 2018/12/25
3+ /// Github: https://github.com/nb312
4+ /// Email: niebin312@gmail.com
5+ ///
6+ import "package:flutter/material.dart" ;
7+
8+ class ChatPageOne extends StatefulWidget {
9+ @override
10+ _ChatState createState () => _ChatState ();
11+ }
12+
13+ class _ChatState extends State <ChatPageOne > {
14+ @override
15+ Widget build (BuildContext context) {
16+ return Scaffold (
17+ appBar: AppBar (
18+ title: Text ("Chat one" ),
19+ ),
20+ body: Text ("Chat page one" ),
21+ );
22+ }
23+ }
Original file line number Diff line number Diff line change 1+ ///
2+ /// Created by NieBin on 2018/12/25
3+ /// Github: https://github.com/nb312
4+ /// Email: niebin312@gmail.com
5+ ///
6+ import "package:flutter/material.dart" ;
7+
8+ class FeedPageOne extends StatefulWidget {
9+ @override
10+ _FeedState createState () => _FeedState ();
11+ }
12+
13+ class _FeedState extends State <FeedPageOne > {
14+ @override
15+ Widget build (BuildContext context) {
16+ return Scaffold (
17+ appBar: AppBar (
18+ title: Text ("Feed one" ),
19+ ),
20+ body: Text ("Feed page one" ),
21+ );
22+ }
23+ }
Original file line number Diff line number Diff line change 1+ ///
2+ /// Created by NieBin on 2018/12/25
3+ /// Github: https://github.com/nb312
4+ /// Email: niebin312@gmail.com
5+ ///
6+ import "package:flutter/material.dart" ;
7+
8+ class MediaPageOne extends StatefulWidget {
9+ @override
10+ _MediaState createState () => _MediaState ();
11+ }
12+
13+ class _MediaState extends State <MediaPageOne > {
14+ @override
15+ Widget build (BuildContext context) {
16+ return Scaffold (
17+ appBar: AppBar (
18+ title: Text ("Media one" ),
19+ ),
20+ body: Text ("Media page one" ),
21+ );
22+ }
23+ }
Original file line number Diff line number Diff line change 1+ ///
2+ /// Created by NieBin on 2018/12/25
3+ /// Github: https://github.com/nb312
4+ /// Email: niebin312@gmail.com
5+ ///
6+ import "package:flutter/material.dart" ;
7+
8+ class NavigationPageOne extends StatefulWidget {
9+ @override
10+ _NavigationState createState () => _NavigationState ();
11+ }
12+
13+ class _NavigationState extends State <NavigationPageOne > {
14+ @override
15+ Widget build (BuildContext context) {
16+ return Scaffold (
17+ appBar: AppBar (
18+ title: Text ("Navigation one" ),
19+ ),
20+ body: Text ("Navigation page one" ),
21+ );
22+ }
23+ }
Original file line number Diff line number Diff line change 1+ ///
2+ /// Created by NieBin on 2018/12/25
3+ /// Github: https://github.com/nb312
4+ /// Email: niebin312@gmail.com
5+ ///
6+ import "package:flutter/material.dart" ;
7+
8+ class ProfilePageOne extends StatefulWidget {
9+ @override
10+ _ProfileState createState () => _ProfileState ();
11+ }
12+
13+ class _ProfileState extends State <ProfilePageOne > {
14+ @override
15+ Widget build (BuildContext context) {
16+ return Scaffold (
17+ appBar: AppBar (
18+ title: Text ("Profile one" ),
19+ ),
20+ body: Text ("Profile page one" ),
21+ );
22+ }
23+ }
Original file line number Diff line number Diff line change 1+ ///
2+ /// Created by NieBin on 2018/12/25
3+ /// Github: https://github.com/nb312
4+ /// Email: niebin312@gmail.com
5+ ///
6+ import "package:flutter/material.dart" ;
7+
8+ class ShopPageOne extends StatefulWidget {
9+ @override
10+ _ShopState createState () => _ShopState ();
11+ }
12+
13+ class _ShopState extends State <ShopPageOne > {
14+ @override
15+ Widget build (BuildContext context) {
16+ return Scaffold (
17+ appBar: AppBar (
18+ title: Text ("Shopping one" ),
19+ ),
20+ body: Text ("Shopping page one" ),
21+ );
22+ }
23+ }
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ import "package:flutter/material.dart";
77
88class SignPageOne extends StatefulWidget {
99 @override
10- _EmptyState createState () => _EmptyState ();
10+ _SignOneState createState () => _SignOneState ();
1111}
1212
13- class _EmptyState extends State <SignPageOne > {
13+ class _SignOneState extends State <SignPageOne > {
1414 @override
1515 Widget build (BuildContext context) {
1616 return Scaffold (
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ import "package:flutter/material.dart";
77
88class SignPageTwo extends StatefulWidget {
99 @override
10- _EmptyState createState () => _EmptyState ();
10+ _SignTwoState createState () => _SignTwoState ();
1111}
1212
13- class _EmptyState extends State <SignPageTwo > {
13+ class _SignTwoState extends State <SignPageTwo > {
1414 @override
1515 Widget build (BuildContext context) {
1616 return Scaffold (
You can’t perform that action at this time.
0 commit comments