1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-08 12:39:17 +00:00
Files
flutter-examples/using_custom_fonts/lib/main.dart
2017-09-29 22:24:14 -07:00

23 lines
536 B
Dart

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"),
),
),
)));
}