Skip to content

Instantly share code, notes, and snippets.

@HansMuller
Created April 24, 2018 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HansMuller/5aa63a86a4e16d6c2a47c8fa720d3e40 to your computer and use it in GitHub Desktop.
Save HansMuller/5aa63a86a4e16d6c2a47c8fa720d3e40 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(
primarySwatch: Colors.blue,
scaffoldBackgroundColor: Colors.green,
),
home: new MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return new Scaffold(
//backgroundColor: Colors.green,
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(child: new Text("Hello World")),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment