mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-08-21 04:54:48 +08:00
17 lines
372 B
Dart
17 lines
372 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
void main() {
|
|
runApp(new MaterialApp(
|
|
title: "Simple Material App",
|
|
home: new Scaffold(
|
|
appBar: new AppBar(
|
|
title: new Text("Simple Material App"),
|
|
),
|
|
body: new Container(
|
|
child: new Center(
|
|
child: new Text("Hello World!"),
|
|
),
|
|
),
|
|
)));
|
|
}
|