Text(
'This is Google Fonts',
style: GoogleFonts.lato(
textStyle: Theme.of(context).textTheme.display1,
fontSize: 48,
fontWeight: FontWeight.w700,
fontStyle: FontStyle.italic,
),
),
//installation of google fonts in flutter (pubspec.yaml)
//please ignore the text after two slashes!
dependencies:
google_fonts: ^1.1.1 //(current one is this)
$ flutter pub get // => (this means click on the pub get option[kinda apply]).
import 'package:google_fonts/google_fonts.dart';
Text(
'This is Google Fonts',
style: GoogleFonts.getFont('Lato'),
),
Text(
'This is Google Fonts',
style: GoogleFonts.lato(),
),
Text(
'This is Google Fonts',
style: GoogleFonts.lato(
textStyle: TextStyle(color: Colors.blue, letterSpacing: .5),
),
),