@expo-google-fonts/barlow-semi-condensed

Use the Barlow Semi Condensed font family from Google Fonts in your Expo app

Usage no npm install needed!

<script type="module">
  import expoGoogleFontsBarlowSemiCondensed from 'https://cdn.skypack.dev/@expo-google-fonts/barlow-semi-condensed';
</script>

README

@expo-google-fonts/barlow-semi-condensed

npm version license publish size publish size

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

Barlow Semi Condensed

Barlow Semi Condensed

This font family contains 18 styles.

  • BarlowSemiCondensed_100Thin
  • BarlowSemiCondensed_100Thin_Italic
  • BarlowSemiCondensed_200ExtraLight
  • BarlowSemiCondensed_200ExtraLight_Italic
  • BarlowSemiCondensed_300Light
  • BarlowSemiCondensed_300Light_Italic
  • BarlowSemiCondensed_400Regular
  • BarlowSemiCondensed_400Regular_Italic
  • BarlowSemiCondensed_500Medium
  • BarlowSemiCondensed_500Medium_Italic
  • BarlowSemiCondensed_600SemiBold
  • BarlowSemiCondensed_600SemiBold_Italic
  • BarlowSemiCondensed_700Bold
  • BarlowSemiCondensed_700Bold_Italic
  • BarlowSemiCondensed_800ExtraBold
  • BarlowSemiCondensed_800ExtraBold_Italic
  • BarlowSemiCondensed_900Black
  • BarlowSemiCondensed_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/barlow-semi-condensed expo-font

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';
import {
  useFonts,
  BarlowSemiCondensed_100Thin,
  BarlowSemiCondensed_100Thin_Italic,
  BarlowSemiCondensed_200ExtraLight,
  BarlowSemiCondensed_200ExtraLight_Italic,
  BarlowSemiCondensed_300Light,
  BarlowSemiCondensed_300Light_Italic,
  BarlowSemiCondensed_400Regular,
  BarlowSemiCondensed_400Regular_Italic,
  BarlowSemiCondensed_500Medium,
  BarlowSemiCondensed_500Medium_Italic,
  BarlowSemiCondensed_600SemiBold,
  BarlowSemiCondensed_600SemiBold_Italic,
  BarlowSemiCondensed_700Bold,
  BarlowSemiCondensed_700Bold_Italic,
  BarlowSemiCondensed_800ExtraBold,
  BarlowSemiCondensed_800ExtraBold_Italic,
  BarlowSemiCondensed_900Black,
  BarlowSemiCondensed_900Black_Italic,
} from '@expo-google-fonts/barlow-semi-condensed';

export default () => {
  let [fontsLoaded] = useFonts({
    BarlowSemiCondensed_100Thin,
    BarlowSemiCondensed_100Thin_Italic,
    BarlowSemiCondensed_200ExtraLight,
    BarlowSemiCondensed_200ExtraLight_Italic,
    BarlowSemiCondensed_300Light,
    BarlowSemiCondensed_300Light_Italic,
    BarlowSemiCondensed_400Regular,
    BarlowSemiCondensed_400Regular_Italic,
    BarlowSemiCondensed_500Medium,
    BarlowSemiCondensed_500Medium_Italic,
    BarlowSemiCondensed_600SemiBold,
    BarlowSemiCondensed_600SemiBold_Italic,
    BarlowSemiCondensed_700Bold,
    BarlowSemiCondensed_700Bold_Italic,
    BarlowSemiCondensed_800ExtraBold,
    BarlowSemiCondensed_800ExtraBold_Italic,
    BarlowSemiCondensed_900Black,
    BarlowSemiCondensed_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: 'BarlowSemiCondensed_100Thin',
          }}>
          Barlow Semi Condensed Thin
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_100Thin_Italic',
          }}>
          Barlow Semi Condensed Thin Italic
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_200ExtraLight',
          }}>
          Barlow Semi Condensed Extra Light
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_200ExtraLight_Italic',
          }}>
          Barlow Semi Condensed Extra Light Italic
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_300Light',
          }}>
          Barlow Semi Condensed Light
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_300Light_Italic',
          }}>
          Barlow Semi Condensed Light Italic
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_400Regular',
          }}>
          Barlow Semi Condensed Regular
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_400Regular_Italic',
          }}>
          Barlow Semi Condensed Italic
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_500Medium',
          }}>
          Barlow Semi Condensed Medium
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_500Medium_Italic',
          }}>
          Barlow Semi Condensed Medium Italic
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_600SemiBold',
          }}>
          Barlow Semi Condensed Semi Bold
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_600SemiBold_Italic',
          }}>
          Barlow Semi Condensed Semi Bold Italic
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_700Bold',
          }}>
          Barlow Semi Condensed Bold
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_700Bold_Italic',
          }}>
          Barlow Semi Condensed Bold Italic
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_800ExtraBold',
          }}>
          Barlow Semi Condensed Extra Bold
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_800ExtraBold_Italic',
          }}>
          Barlow Semi Condensed Extra Bold Italic
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_900Black',
          }}>
          Barlow Semi Condensed Black
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily: 'BarlowSemiCondensed_900Black_Italic',
          }}>
          Barlow Semi Condensed Black Italic
        </Text>
      </View>
    );
  }
};

🔡 Gallery

|||| |-|-|-| |BarlowSemiCondensed_100Thin|BarlowSemiCondensed_100Thin_Italic|BarlowSemiCondensed_200ExtraLight|| |BarlowSemiCondensed_200ExtraLight_Italic|BarlowSemiCondensed_300Light|BarlowSemiCondensed_300Light_Italic|| |BarlowSemiCondensed_400Regular|BarlowSemiCondensed_400Regular_Italic|BarlowSemiCondensed_500Medium|| |BarlowSemiCondensed_500Medium_Italic|BarlowSemiCondensed_600SemiBold|BarlowSemiCondensed_600SemiBold_Italic|| |BarlowSemiCondensed_700Bold|BarlowSemiCondensed_700Bold_Italic|BarlowSemiCondensed_800ExtraBold|| |BarlowSemiCondensed_800ExtraBold_Italic|BarlowSemiCondensed_900Black|BarlowSemiCondensed_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/barlow-semi-condensed 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 Barlow Semi Condensed 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.