Answers for "how to change font in flutter"

9

flutter font bold

Text(
  'Some text',
  style: TextStyle(
    fontSize: 24,
    fontWeight: FontWeight.bold),
)
Posted by: Guest on June-23-2020
2

how to change flutter text font

Text(
  "Hello",
  style: TextStyle(fontFamily: 'Raleway'),
)
Posted by: Guest on August-20-2021
8

add font in flutter

MaterialApp(
  title: 'Fonts',
  theme: ThemeData(fontFamily: 'Mukta'),
  home: HomePage(),
);
 
 In pubspec.yaml
 fonts:
    - family: Mukta
      fonts:
        - asset: assets/fonts/Mukta/Mukta-Regular.ttf
          weight: 400
Posted by: Guest on May-26-2021

Code answers related to "how to change font in flutter"

Browse Popular Code Answers by Language