1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-09 13:09:03 +00:00
Files
flutter-examples/using_theme/lib/main.dart
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),
));
}