Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@expo-google-fonts/montserrat

expo62.3kMIT AND OFL-1.10.4.2TypeScript support: included

Use the Montserrat font family from Google Fonts in your Expo app

readme

@expo-google-fonts/montserrat

npm version license publish size publish size

This package lets you use the Montserrat font family from Google Fonts in your Expo app.

Montserrat

Montserrat

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

Usage

Run this command from the shell in the root directory of your Expo project to add the font family package to your project

npx expo install @expo-google-fonts/montserrat expo-font

Now add code like this to your project

import { Text, View } from "react-native";
import { useFonts } from '@expo-google-fonts/montserrat/useFonts';
import { Montserrat_100Thin } from '@expo-google-fonts/montserrat/100Thin';
import { Montserrat_200ExtraLight } from '@expo-google-fonts/montserrat/200ExtraLight';
import { Montserrat_300Light } from '@expo-google-fonts/montserrat/300Light';
import { Montserrat_400Regular } from '@expo-google-fonts/montserrat/400Regular';
import { Montserrat_500Medium } from '@expo-google-fonts/montserrat/500Medium';
import { Montserrat_600SemiBold } from '@expo-google-fonts/montserrat/600SemiBold';
import { Montserrat_700Bold } from '@expo-google-fonts/montserrat/700Bold';
import { Montserrat_800ExtraBold } from '@expo-google-fonts/montserrat/800ExtraBold';
import { Montserrat_900Black } from '@expo-google-fonts/montserrat/900Black';
import { Montserrat_100Thin_Italic } from '@expo-google-fonts/montserrat/100Thin_Italic';
import { Montserrat_200ExtraLight_Italic } from '@expo-google-fonts/montserrat/200ExtraLight_Italic';
import { Montserrat_300Light_Italic } from '@expo-google-fonts/montserrat/300Light_Italic';
import { Montserrat_400Regular_Italic } from '@expo-google-fonts/montserrat/400Regular_Italic';
import { Montserrat_500Medium_Italic } from '@expo-google-fonts/montserrat/500Medium_Italic';
import { Montserrat_600SemiBold_Italic } from '@expo-google-fonts/montserrat/600SemiBold_Italic';
import { Montserrat_700Bold_Italic } from '@expo-google-fonts/montserrat/700Bold_Italic';
import { Montserrat_800ExtraBold_Italic } from '@expo-google-fonts/montserrat/800ExtraBold_Italic';
import { Montserrat_900Black_Italic } from '@expo-google-fonts/montserrat/900Black_Italic';

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 null;
  } 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>
    );
  }
};

|||| |-|-|-| |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||

👩‍💻 Use During Development

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.

📖 License

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.

🤝 Contributing

Contributions 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.