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?
Asked
Active
Viewed 1,577 times
0
-
more info needed to actually help you. – Ashutosh Patole Jun 26 '21 at 05:22
-
Normal Basic Toast Like, (ex. using library fluttertoast to output widget ) to same widget in toast Message Text to Change Font-Family? – Chintan StackApp Jun 26 '21 at 12:23
1 Answers
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:

J.K.
- 236
- 3
- 5