“Instale el flutador de fuentes de Google” Código de respuesta

Google Fonts Flutter

//Add this command you will get latest version of this depedency
$ flutter pub add google_fonts
//import this library
import 'package:google_fonts/google_fonts.dart';
Cautious Crocodile

Google Fonts Flutter


dependencies:
  google_fonts: ^2.1.0
Scary Shark

Flutter Googlefonts.

Text(
  'This is Google Fonts',
  style: GoogleFonts.lato(
    textStyle: Theme.of(context).textTheme.display1,
    fontSize: 48,
    fontWeight: FontWeight.w700,
    fontStyle: FontStyle.italic,
  ),
),
Dizzy Dunlin

Flutter Agregar fuentes personalizadas

flutter:
  fonts:
    - family: Proxima
      fonts:
        - asset: lib/fonts/ProximaNova-Regular.otf

In case you are using an emulator, go to the terminal and type "flutter clean" then "flutter pub get" to update the font used.
verdy

Instale el flutador de fuentes de Google

$ flutter pub add google_fonts
Good Gentoo

Respuestas similares a “Instale el flutador de fuentes de Google”

Preguntas similares a “Instale el flutador de fuentes de Google”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código