
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@expo-google-fonts/montserrat
Advanced tools
Use the Montserrat font family from Google Fonts in your Expo app
This package lets you use the Montserrat font family from Google Fonts in your Expo app.
This font family contains 18 styles.
Montserrat_100Thin
Montserrat_200ExtraLight
Montserrat_300Light
Montserrat_400Regular
Montserrat_500Medium
Montserrat_600SemiBold
Montserrat_700Bold
Montserrat_800ExtraBold
Montserrat_900Black
Montserrat_100Thin_Italic
Montserrat_200ExtraLight_Italic
Montserrat_300Light_Italic
Montserrat_400Regular_Italic
Montserrat_500Medium_Italic
Montserrat_600SemiBold_Italic
Montserrat_700Bold_Italic
Montserrat_800ExtraBold_Italic
Montserrat_900Black_Italic
Run this command from the shell in the root directory of your Expo project to add the font family package to your project
expo install @expo-google-fonts/montserrat expo-font expo-app-loading
Now add code like this to your project
import React, { useState, useEffect } from 'react';
import { Text, View, StyleSheet } from 'react-native';
import AppLoading from 'expo-app-loading';
import {
useFonts,
Montserrat_100Thin,
Montserrat_200ExtraLight,
Montserrat_300Light,
Montserrat_400Regular,
Montserrat_500Medium,
Montserrat_600SemiBold,
Montserrat_700Bold,
Montserrat_800ExtraBold,
Montserrat_900Black,
Montserrat_100Thin_Italic,
Montserrat_200ExtraLight_Italic,
Montserrat_300Light_Italic,
Montserrat_400Regular_Italic,
Montserrat_500Medium_Italic,
Montserrat_600SemiBold_Italic,
Montserrat_700Bold_Italic,
Montserrat_800ExtraBold_Italic,
Montserrat_900Black_Italic,
} from '@expo-google-fonts/montserrat';
export default () => {
let [fontsLoaded] = useFonts({
Montserrat_100Thin,
Montserrat_200ExtraLight,
Montserrat_300Light,
Montserrat_400Regular,
Montserrat_500Medium,
Montserrat_600SemiBold,
Montserrat_700Bold,
Montserrat_800ExtraBold,
Montserrat_900Black,
Montserrat_100Thin_Italic,
Montserrat_200ExtraLight_Italic,
Montserrat_300Light_Italic,
Montserrat_400Regular_Italic,
Montserrat_500Medium_Italic,
Montserrat_600SemiBold_Italic,
Montserrat_700Bold_Italic,
Montserrat_800ExtraBold_Italic,
Montserrat_900Black_Italic,
});
let fontSize = 24;
let paddingVertical = 6;
if (!fontsLoaded) {
return <AppLoading />;
} else {
return (
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_100Thin',
}}>
Montserrat Thin
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_200ExtraLight',
}}>
Montserrat Extra Light
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_300Light',
}}>
Montserrat Light
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_400Regular',
}}>
Montserrat Regular
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_500Medium',
}}>
Montserrat Medium
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_600SemiBold',
}}>
Montserrat Semi Bold
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_700Bold',
}}>
Montserrat Bold
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_800ExtraBold',
}}>
Montserrat Extra Bold
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_900Black',
}}>
Montserrat Black
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_100Thin_Italic',
}}>
Montserrat Thin Italic
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_200ExtraLight_Italic',
}}>
Montserrat Extra Light Italic
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_300Light_Italic',
}}>
Montserrat Light Italic
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_400Regular_Italic',
}}>
Montserrat Italic
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_500Medium_Italic',
}}>
Montserrat Medium Italic
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_600SemiBold_Italic',
}}>
Montserrat Semi Bold Italic
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_700Bold_Italic',
}}>
Montserrat Bold Italic
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_800ExtraBold_Italic',
}}>
Montserrat Extra Bold Italic
</Text>
<Text
style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: 'Montserrat_900Black_Italic',
}}>
Montserrat Black Italic
</Text>
</View>
);
}
};
![]() | ![]() | ![]() |
![]() | ![]() | ![]() |
![]() | ![]() | ![]() |
![]() | ![]() | ![]() |
![]() | ![]() | ![]() |
![]() | ![]() | ![]() |
If you are trying out lots of different fonts, you can try using the @expo-google-fonts/dev
package.
You can import any font style from any Expo Google Fonts package from it. It will load the fonts over the network at runtime instead of adding the asset as a file to your project, so it may take longer for your app to get to interactivity at startup, but it is extremely convenient for playing around with any style that you want.
The @expo-google-fonts/montserrat
package and its code are released under the MIT license.
All the fonts in the Google Fonts catalog are free and open source.
Check the Montserrat page on Google Fonts for the specific license of this font family.
You can use these fonts freely in your products & projects - print or digital, commercial or otherwise. However, you can't sell the fonts on their own. This isn't legal advice, please consider consulting a lawyer and see the full license for all details.
@expo-google-fonts/dev
Devlopment PackageContributions are very welcome! This entire directory, including what you are reading now, was generated from code. Instead of submitting PRs to this directly, please make contributions to the generator instead.
FAQs
Use the Montserrat font family from Google Fonts in your Expo app
The npm package @expo-google-fonts/montserrat receives a total of 6,530 weekly downloads. As such, @expo-google-fonts/montserrat popularity was classified as popular.
We found that @expo-google-fonts/montserrat demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.