Files
2017-08-09 01:15:28 -07:00

18 lines
477 B
Dart

import 'package:flutter/material.dart';
void main() {
runApp(new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: new Text("Using Theme"),
),
body: new Container(
child: new Center(
child: new Text("Hello World!", style: new TextStyle(color: Colors.white),),
),
decoration: new BoxDecoration(color: Colors.purple)),
),
theme: new ThemeData(primarySwatch: Colors.deepPurple),
));
}