Allow custom fonts in Snackbar #2580
henrikweimenhog
started this conversation in
New Feature Discussions
Replies: 1 comment
-
Sorry, I got the solution from Vladislav Antonyuk: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
It appears that it is not possible to use custom fonts in the Snackbar.
Consider this code to see the problem:
var snackbarOptions = new SnackbarOptions
{
// this is how you set the font according to samples
Font = Microsoft.Maui.Font.SystemFontOfSize(14),
// FontFamily is not valid. Custom fonts are usually set like this
FontFamily = "MyCustomFont"
};
Beta Was this translation helpful? Give feedback.
All reactions