google_fonts 6.2.1 google_fonts: ^6.2.1 copied to clipboard
A Flutter package to use fonts from fonts.google.com. Supports HTTP fetching, caching, and asset bundling.
import 'package:flutter/material.dart';
import 'package:google_fonts_tester/example_font_selection.dart';
import 'package:google_fonts_tester/example_simple.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData.light(useMaterial3: true),
home: DefaultTabController(
animationDuration: Duration.zero,
length: 2,
child: Scaffold(
appBar: AppBar(
title: const Text('Google Fonts Demo'),
bottom: const TabBar(
tabs: <Widget>[
Tab(text: 'Simple'),
Tab(text: 'Select a font'),
],
),
),
body: const TabBarView(
children: <Widget>[
ExampleSimple(),
ExampleFontSelection(),
],
),
),
),
);
}
}