Answers for "how to add font style from google in flutter"

2

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';
Posted by: Guest on August-15-2021
0

google fonts for flutte

//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]).
Posted by: Guest on December-12-2020
1

flutter add custom fonts

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.
Posted by: Guest on November-06-2020

Code answers related to "how to add font style from google in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language