added using_custom_fonts example

This commit is contained in:
Nishant Srivastava
2017-09-29 22:24:14 -07:00
parent db20868190
commit 3a01e2d724
56 changed files with 1412 additions and 0 deletions

View File

@ -0,0 +1,23 @@
import 'package:flutter/material.dart';
void main() {
runApp(new MaterialApp(
// Title
title: "Using Custom Fonts",
// Home
home: new Scaffold(
// Appbar
appBar: new AppBar(
// Title
title: new Text("Using Custom Fonts"),
),
// Body
body: new Container(
// Center the content
child: new Center(
// Add Text
child: new Text("The quick brown fox jumps over the lazy dog"),
),
),
)));
}