Johnhong9527 5 years ago
parent
commit
c574c06c3b
3 changed files with 2 additions and 15 deletions
  1. BIN
      .DS_Store
  2. 1 0
      .gitignore
  3. 1 15
      app/lib/main.dart

BIN
.DS_Store


+ 1 - 0
.gitignore

@@ -0,0 +1 @@
+.DS_Store

+ 1 - 15
app/lib/main.dart

@@ -53,7 +53,7 @@ class _MyHomePageState extends State<MyHomePage> {
           mainAxisAlignment: MainAxisAlignment.center,
           children: <Widget>[
             Text(
-              '你已经按了很多次了:',
+              '你已经按了很多次了开始吧:',
             ),
             Text(
               '$_counter',
@@ -145,17 +145,3 @@ class NewRoute extends StatelessWidget {
     );
   }
 }
-
-class NewRoute2 extends StatelessWidget {
-  @override
-  Widget build(BuildContext context) {
-    return Scaffold(
-      appBar: AppBar(
-        title: Text("New route"),
-      ),
-      body: Center(
-        child: Text("This is new route"),
-      ),
-    );
-  }
-}