tl;dr
assets
folder and copy your fonts to itreact-native.config.js
react-native link
to install fonts for both Android and iOS1// react-native.config.js
2module.exports = {
3 assets: ['./assets/fonts/Graphik'],
4}
android/app/src/main/assets/
The value for fotFamily
(or just font-family
if you’re usig styled-components) will be the font filename minus the extension.
Use .otf
or .ttf
.
.woff
won’t work. (.woff
is a compressed version of OpenType .otf
or TrueType .ttf
)
error Linking assets failed. Run CLI with --verbose flag for more details.
SyntaxError: Expected [\n\r] but end of input found.
Add a new line at the end of ios/[Project].xcodeproj/project.pbxproj
and run react-native link
again