1--- 2title: Fonts 3description: Learn about using custom fonts, supported font formats for each platform and loading them. 4--- 5 6import { YesIcon, NoIcon } from '~/ui/components/DocIcons'; 7import { Terminal, SnackInline } from '~/ui/components/Snippet'; 8import ImageSpotlight from '~/components/plugins/ImageSpotlight'; 9import { BoxLink } from '~/ui/components/BoxLink'; 10 11Both Android and iOS and most desktop operating systems come with their own set of platform fonts. However, if you want to inject some more brand personality into your app, a well-picked font can go a long way. 12 13As each operating system has its own set of platform fonts, if you want to produce an experience that is consistent for all users, you'll want to use your fonts in your project. This page covers the aspects of getting a custom font, loading it in your project and what are some of the best practices to use when the font is being loaded in your project. 14 15## Get a font 16 17The first thing you need is a font file. For a working example, we are going to use Inter Black from the free and open source [Inter font family](https://rsms.me/inter/) by Rasmus Anderson. A common convention in React Native apps is to put your fonts in an **./assets/fonts** directory. However, you can put them anywhere you like. 18 19### Supported font formats 20 21The two officially supported font formats that work consistently in the Expo SDK across Android, iOS and the web, are OTF and TTF. If your font is in another format, you will require to set up an [advanced configuration](#beyond-otf-and-ttf) for your project. 22 23If you have both OTF and TTF versions of a font, prefer OTF. OTF is a newer format and **.otf** files are often smaller than **.ttf** files. Sometimes OTF files render slightly better in certain contexts. In general, both formats are very similar and perfectly acceptable. 24 25### Beyond OTF and TTF 26 27If your font is in another format, you have to [customize the Metro bundler configuration](/guides/customizing-metro#adding-more-file-extensions-to-assetexts) to get anything other than OTF and TTF to work. In some cases, trying to render a font format that a platform doesn't support may cause your app to crash. 28 29For reference, the following table provides what formats work on which platforms: 30 31| Format | Web | iOS | Android | 32| ------ | ----------- | ----------- | ----------- | 33| bdf | <NoIcon /> | <NoIcon /> | <NoIcon /> | 34| dfont | <NoIcon /> | <NoIcon /> | <YesIcon /> | 35| eot | <YesIcon /> | <NoIcon /> | <NoIcon /> | 36| fon | <NoIcon /> | <NoIcon /> | <NoIcon /> | 37| otf | <YesIcon /> | <YesIcon /> | <YesIcon /> | 38| ps | <NoIcon /> | <NoIcon /> | <NoIcon /> | 39| svg | <YesIcon /> | <NoIcon /> | <NoIcon /> | 40| ttc | <NoIcon /> | <NoIcon /> | <NoIcon /> | 41| ttf | <YesIcon /> | <YesIcon /> | <YesIcon /> | 42| woff | <YesIcon /> | <YesIcon /> | <NoIcon /> | 43| woff2 | <YesIcon /> | <YesIcon /> | <NoIcon /> | 44 45## Use a custom font 46 47After getting the font file, in your project, you need to install [`expo-font`](/versions/latest/sdk/font/#installation) package. 48 49### Import the font 50 51After the installation step, import the `useFonts` hook from `expo-font` package in your project. The hook keeps track of the loading state of the font. When an app is initialized, the hook loads the map of fonts as shown in the example below: 52 53```jsx App.js 54// Rest of the import statements 55import { useFonts } from 'expo-font'; 56 57export default function App() { 58 const [fontsLoaded] = useFonts({ 59 'Inter-Black': require('./assets/fonts/Inter-Black.otf'), 60 }); 61} 62``` 63 64Then, you can use the font on the `<Text>` by using `fontFamily` style prop. 65 66```jsx 67<Text style={{ fontFamily: 'Inter-Black', fontSize: 30 }}>Inter Black</Text> 68``` 69 70Alternatively, you can use [`Font.loadAsync`](#using-fontloadasync-instead-of-the-usefonts-hook) to load the fonts in your app. 71 72### Minimal example 73 74Let's take a look at a minimal example that uses Inter font family. It uses [`useFonts` hook](/versions/latest/sdk/font/#usefonts) to import the font from **./assets/fonts** directory. 75 76<SnackInline label="Using custom fonts" dependencies={['expo-font', 'expo-splash-screen']} files={{ 'assets/fonts/Inter-Black.otf': 'https://snack-code-uploads.s3.us-west-1.amazonaws.com/~asset/44b1541a96341780b29112665c66ac67' }}> 77 78```jsx 79import { useCallback } from 'react'; 80import { Text, View, StyleSheet } from 'react-native'; 81/* @info Import useFonts hook from 'expo-font'. */ import { useFonts } from 'expo-font'; /* @end */ 82/* @info Also, import SplashScreen so that when the fonts are not loaded, we can continue to show SplashScreen. */ import * as SplashScreen from 'expo-splash-screen'; /* @end */ 83 84/* @info This prevents SplashScreen from auto hiding while the fonts are loaded. */ 85SplashScreen.preventAutoHideAsync(); 86/* @end */ 87 88export default function App() { 89 const [fontsLoaded] = useFonts({ 90 'Inter-Black': require('./assets/fonts/Inter-Black.otf'), 91 }); 92 93 /* @info After the custom fonts have loaded, we can hide the splash screen and display the app screen. */ 94 const onLayoutRootView = useCallback(async () => { 95 if (fontsLoaded) { 96 await SplashScreen.hideAsync(); 97 } 98 }, [fontsLoaded]); 99 /* @end */ 100 101 if (!fontsLoaded) { 102 return null; 103 } 104 105 return ( 106 <View style={styles.container} onLayout={onLayoutRootView}> 107 <Text style={{ fontFamily: 'Inter-Black', fontSize: 30 }}>Inter Black</Text> 108 <Text style={{ fontSize: 30 }}>Platform Default</Text> 109 </View> 110 ); 111} 112 113/* @hide const styles = StyleSheet.create({ ... }); */ 114const styles = StyleSheet.create({ 115 container: { 116 flex: 1, 117 justifyContent: 'center', 118 alignItems: 'center', 119 }, 120}); 121/* @end */ 122``` 123 124</SnackInline> 125 126Inter Black is very bold and dark and pretty distinctive so you should be able to tell if you're able to get the example working right, or if something is wrong. If the platform default font looks a little different for you, that's fine; the platform default font can vary depending on the operating system and the device manufacturer (on Android). 127 128When you load it on your device, you'll see something like this: 129 130<ImageSpotlight 131 alt="Enter a name of your new organization." 132 src="/static/images/font-example-custom-font.jpg" 133 style={{ maxWidth: 305 }} 134/> 135 136To create a new project including this example, run in your terminal: 137 138<Terminal cmd={['$ npx create-expo-app --example with-custom-font']} /> 139 140> The above example also uses [`expo-splash-screen`](/versions/latest/sdk/splash-screen/) package. For more information on that, see [Waiting for fonts to load](#wait-for-fonts-to-load) section. 141 142## Platform built-in fonts 143 144If you don't want to use a custom font, you can use the platform's default font by not specifying a font family. Each platform has a different set of fonts available by default, so there's no good way to specify one that will work everywhere without supplying your custom font. 145 146On the web, there are several generic font families that you can specify. Different browsers and operating systems are configured to use different fonts for each of these font family specifications. For example, Safari on an iPhone uses San Francisco as its default for `sans-serif` while Microsoft Edge on Windows uses Arial. Similarly, Chrome on Android uses Roboto, though OnePlus phones often use Slate, and so on. 147 148- `sans-serif` 149- `serif` 150- `monospace` 151- `fantasy` 152- `cursive` 153 154In general, your safest bets are just to use the system default which usually is an easy-to-read sans-serif font that the user of any system should be familiar with. However, don't be surprised when the system default font is changed to use another font that is not easy to read but at the same time, is supported on the platform or the device. In this case, use your custom font so you have precise control over what the user will see. 155 156## Use a Google Font 157 158Expo has first-class support for all fonts listed in [Google Fonts](https://fonts.google.com/). To use one of these, check out the [`expo-google-fonts`](https://github.com/expo/google-fonts) package. With these packages, you can quickly integrate any font or font variants. 159 160For example, to use Inter font you can install the [`@expo-google-fonts/inter`](https://www.npmjs.com/package/@expo-google-fonts/inter) package with the command below. 161 162<Terminal cmd={['$ npx expo install expo-font @expo-google-fonts/inter']} /> 163 164Then, you can integrate it in your project by using the `useFonts` hook. You can directly use this hook from the Google Fonts package. Under the hood, the hook uses [`Font.loadAsync`](/versions/latest/sdk/font/#loadasyncfontfamilyorfontmap-source). You do not have to explicitly import the font file since that is done by the package itself. 165 166<SnackInline label="Using Google fonts" dependencies={['@expo-google-fonts/inter']}> 167 168```jsx 169import React from 'react'; 170import { View, Text, StyleSheet } from 'react-native'; 171import { useFonts, Inter_900Black } from '@expo-google-fonts/inter'; 172 173export default function App() { 174 let [fontsLoaded] = useFonts({ 175 Inter_900Black, 176 }); 177 178 if (!fontsLoaded) { 179 return null; 180 } 181 182 return ( 183 <View style={styles.container}> 184 <Text style={{ fontFamily: 'Inter_900Black', fontSize: 40 }}>Inter Black</Text> 185 </View> 186 ); 187} 188 189/* @hide const styles = StyleSheet.create({ ... }); */ 190const styles = StyleSheet.create({ 191 container: { 192 flex: 1, 193 justifyContent: 'center', 194 alignItems: 'center', 195 }, 196}); 197/* @end */ 198``` 199 200</SnackInline> 201 202## Wait for fonts to load 203 204Since your fonts won't be ready right away, it is generally a good practice to not render anything until the font is ready. Instead, you can continue to display the Splash Screen of your app until all fonts have loaded. It is done by using [`expo-splash-screen`](/versions/latest/sdk/splash-screen/) package. See the [minimal example](#minimal-example) section on how to use it. 205 206### Load fonts on the web 207 208Sometimes, particularly on the web -- people choose to render their content in a platform default font while their custom font is loading. Alternatively, to render the rest of their content, that doesn't depend on the custom font while the font is loading. These approaches are called FOUT and FOIT and you can read a lot more about them on the web. 209 210In general, these strategies are not recommended for native apps. If you include your fonts in your project, the 211fonts will always be delivered to the user by the time your code is running. The one exception to this is that you may prefer to do this on the web. 212 213## Additional information 214 215You probably don't need to know anything beyond this point to use custom fonts effectively in your app. If you are curious or your use case has not been addressed by the above information, please continue reading. 216 217### Load a remote font directly from the web 218 219In general, it's best and safest to load fonts from your local assets. If you submit to app stores, they will be bundled with the download and available immediately. You don't have to worry about CORS or other potential issues. 220 221However, if you to load a remote font file directly from the web rather than from your project's assets, you can do it by replacing the `require('./assets/fonts/MyFont.otf')` with the URL of your font. See the below example: 222 223<SnackInline label="Using a remote font" dependencies={['expo-font']}> 224 225```jsx 226import React from 'react'; 227import { Text, View, StyleSheet } from 'react-native'; 228import { useFonts } from 'expo-font'; 229 230export default function App() { 231 const [fontsLoaded] = useFonts({ 232 'Inter-SemiBoldItalic': 'https://rsms.me/inter/font-files/Inter-SemiBoldItalic.otf?v=3.12', 233 }); 234 235 if (!fontsLoaded) { 236 return null; 237 } 238 239 return ( 240 <View style={styles.container}> 241 <Text style={{ fontFamily: 'Inter-SemiBoldItalic', fontSize: 30 }}>Inter SemiBoldItalic</Text> 242 <Text style={{ fontSize: 30 }}>Platform Default</Text> 243 </View> 244 ); 245} 246/* @hide const styles = StyleSheet.create({ ... }); */ 247const styles = StyleSheet.create({ 248 container: { 249 flex: 1, 250 justifyContent: 'center', 251 alignItems: 'center', 252 }, 253}); 254/* @end */ 255``` 256 257</SnackInline> 258 259> **warning** **If loading remote fonts, make sure they are being served from an origin with CORS properly configured**. If you don't do this, your remote font might not load properly on the web platform. 260 261### Use `Font.loadAsync` instead of the `useFonts` hook 262 263If you don't want to use the `useFonts` hook (for example, maybe you prefer class components), you can use `Font.loadAsync` directly. Under the hood, the hook uses `Font.loadAsync` from the [`expo-font`](/versions/latest/sdk/font/) library. You can use it directly if you prefer, or if you want to have more fine-grained control over when your fonts are loaded before rendering. 264 265<SnackInline label="Loading font async" dependencies={['expo-font']} files={{ 266 'assets/fonts/Inter-Black.otf': 'https://snack-code-uploads.s3.us-west-1.amazonaws.com/~asset/44b1541a96341780b29112665c66ac67' 267}}> 268 269```jsx 270import React from 'react'; 271import { Text, View, StyleSheet } from 'react-native'; 272import * as Font from 'expo-font'; 273 274let customFonts = { 275 'Inter-Black': require('./assets/fonts/Inter-Black.otf'), 276 'Inter-SemiBoldItalic': 'https://rsms.me/inter/font-files/Inter-SemiBoldItalic.otf?v=3.12', 277}; 278 279export default class App extends React.Component { 280 state = { 281 fontsLoaded: false, 282 }; 283 284 async _loadFontsAsync() { 285 await Font.loadAsync(customFonts); 286 this.setState({ fontsLoaded: true }); 287 } 288 289 componentDidMount() { 290 this._loadFontsAsync(); 291 } 292 293 render() { 294 if (!this.state.fontsLoaded) { 295 return null; 296 } 297 298 return ( 299 <View style={styles.container}> 300 <Text style={{ fontFamily: 'Inter-Black', fontSize: 30 }}>Inter Black</Text> 301 <Text style={{ fontFamily: 'Inter-SemiBoldItalic', fontSize: 30 }}> 302 Inter SemiBoldItalic 303 </Text> 304 <Text style={{ fontSize: 30 }}>Platform Default</Text> 305 </View> 306 ); 307 } 308} 309 310/* @hide const styles = StyleSheet.create({ ... }); */ 311const styles = StyleSheet.create({ 312 container: { 313 flex: 1, 314 justifyContent: 'center', 315 alignItems: 'center', 316 }, 317}); 318/* @end */ 319``` 320 321</SnackInline> 322 323## Next step 324 325<BoxLink 326 title="Color themes" 327 description="Learn more about supporting light and dark modes in your app." 328 href="/develop/user-interface/color-themes" 329/> 330