Johnhong9527 5 年之前
父节点
当前提交
c574c06c3b
共有 3 个文件被更改,包括 2 次插入15 次删除
  1. 二进制
      .DS_Store
  2. 1 0
      .gitignore
  3. 1 15
      app/lib/main.dart

二进制
.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"),
-      ),
-    );
-  }
-}