This commit is contained in:
Nishant Srivastava
2017-08-21 13:57:10 -07:00
parent 284748af28
commit f0f31c27e9
2 changed files with 6 additions and 30 deletions

View File

@ -2,15 +2,20 @@ import 'package:flutter/material.dart';
void main() {
runApp(new MaterialApp(
// Title
title: "Simple Material App",
// Home
home: new Scaffold(
// Appbar
appBar: new AppBar(
// Title
title: new Text("Simple Material App"),
),
// Body
body: new Container(
child: new Center(
child: new Text("Hello World!"),
),
),
)));
}
}