0

Currently, I'm trying to develop an app. and I don't know how to change the Toast font.. Toast Message Text to Change Font-Family?

1 Answers1

0

I guess you want to change the font of a snackbar?

The best way would be to change the snackBarTheme to set the font globally for all snackbars:

 runApp(MaterialApp(
    theme: ThemeData(
      snackBarTheme: SnackBarThemeData(contentTextStyle: TextStyle(fontFamily: "montserrat")),
    ),
...

Reference:

How to create Toast in Flutter

flutter: set font of SnackbarAction label

J.K.
  • 236
  • 3
  • 5