-
Hi! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Okay, I found a solution for this problem after carefully reading the documentation. First, of course, you need to import our font into the application. In order to install a custom font, you need to customize the theme, as described here in the documentation It is also necessary to add a "font" object with the name of your font inside: |
Beta Was this translation helpful? Give feedback.
Okay, I found a solution for this problem after carefully reading the documentation.
First, of course, you need to import our font into the application.
In order to install a custom font, you need to customize the theme, as described here in the documentation
It is also necessary to add a "font" object with the name of your font inside:
const customTheme = Themes.createFromLight({ type: 'coolTheme', font: { sans: '"customFont"', }, })