mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-07-15 02:46:03 +08:00
cleanup
This commit is contained in:
@ -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!"),
|
||||
),
|
||||
),
|
||||
)));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user