Skip to content

Commit

Permalink
Hola Mundo
Browse files Browse the repository at this point in the history
  • Loading branch information
Anahi Salgado committed Dec 6, 2018
1 parent 5b19772 commit ae6567f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildSystemType</key>
<string>Original</string>
</dict>
</plist>
9 changes: 8 additions & 1 deletion platzi_trips_app/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,14 @@ class MyApp extends StatelessWidget {
// is not restarted.
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
home: Scaffold(
appBar: AppBar(
title: Text("Hola Mundo Feliz"),
),
body: Center(
child: Text("Hola Mundo Platzi"),
),
)//MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
Expand Down

0 comments on commit ae6567f

Please sign in to comment.