Files
2017-09-30 00:01:34 -07:00

31 lines
814 B
Dart

import 'package:flutter/material.dart';
import './utils.dart' as utils;
void main() {
runApp(new MaterialApp(
// Title
title: "Using Gradient",
// Home
home: new Scaffold(
// Appbar
appBar: new AppBar(
// Title
title: new Text("Using Gradient"),
),
// Body
body: new Container(
// Center the content
child: new Center(
// Add Text
child: new Text(
"Hello World!",
style: new TextStyle(color: Colors.white),
),
),
// Set background
decoration: new BoxDecoration(
// Add Gradient
gradient: utils.getCustomGradient())))));
}