0.1.0 • Published 1 year ago

sfpro-expo v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@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

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

🔡 Gallery

Montserrat_100ThinMontserrat_200ExtraLightMontserrat_300Light
Montserrat_400RegularMontserrat_500MediumMontserrat_600SemiBold
Montserrat_700BoldMontserrat_800ExtraBoldMontserrat_900Black
Montserrat_100Thin_ItalicMontserrat_200ExtraLight_ItalicMontserrat_300Light_Italic
Montserrat_400Regular_ItalicMontserrat_500Medium_ItalicMontserrat_600SemiBold_Italic
Montserrat_700Bold_ItalicMontserrat_800ExtraBold_ItalicMontserrat_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.

🔗 Links

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

0.1.0

1 year ago