expo-google-fonts-barlow-semi-condensed
v0.3.0
Published
Use the Barlow Semi Condensed font family from Google Fonts in your Expo app
Readme
expo-google-fonts-barlow-semi-condensed
This package lets you use the Barlow Semi Condensed font family from Google Fonts in your Expo app.
Barlow Semi Condensed

This font family contains 18 styles.
BarlowSemiCondensed_100ThinBarlowSemiCondensed_100Thin_ItalicBarlowSemiCondensed_200ExtraLightBarlowSemiCondensed_200ExtraLight_ItalicBarlowSemiCondensed_300LightBarlowSemiCondensed_300Light_ItalicBarlowSemiCondensed_400RegularBarlowSemiCondensed_400Regular_ItalicBarlowSemiCondensed_500MediumBarlowSemiCondensed_500Medium_ItalicBarlowSemiCondensed_600SemiBoldBarlowSemiCondensed_600SemiBold_ItalicBarlowSemiCondensed_700BoldBarlowSemiCondensed_700Bold_ItalicBarlowSemiCondensed_800ExtraBoldBarlowSemiCondensed_800ExtraBold_ItalicBarlowSemiCondensed_900BlackBarlowSemiCondensed_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-fontNow add code like this to your project
import React from 'react';
import {
Text,
View,
} from 'react-native';
import { useFonts } from 'expo-google-fonts-barlow-semi-condensed/useFonts';
import { BarlowSemiCondensed_100Thin } from 'expo-google-fonts-barlow-semi-condensed/100Thin';
import { BarlowSemiCondensed_100Thin_Italic } from 'expo-google-fonts-barlow-semi-condensed/100Thin_Italic';
import { BarlowSemiCondensed_200ExtraLight } from 'expo-google-fonts-barlow-semi-condensed/200ExtraLight';
import { BarlowSemiCondensed_200ExtraLight_Italic } from 'expo-google-fonts-barlow-semi-condensed/200ExtraLight_Italic';
import { BarlowSemiCondensed_300Light } from 'expo-google-fonts-barlow-semi-condensed/300Light';
import { BarlowSemiCondensed_300Light_Italic } from 'expo-google-fonts-barlow-semi-condensed/300Light_Italic';
import { BarlowSemiCondensed_400Regular } from 'expo-google-fonts-barlow-semi-condensed/400Regular';
import { BarlowSemiCondensed_400Regular_Italic } from 'expo-google-fonts-barlow-semi-condensed/400Regular_Italic';
import { BarlowSemiCondensed_500Medium } from 'expo-google-fonts-barlow-semi-condensed/500Medium';
import { BarlowSemiCondensed_500Medium_Italic } from 'expo-google-fonts-barlow-semi-condensed/500Medium_Italic';
import { BarlowSemiCondensed_600SemiBold } from 'expo-google-fonts-barlow-semi-condensed/600SemiBold';
import { BarlowSemiCondensed_600SemiBold_Italic } from 'expo-google-fonts-barlow-semi-condensed/600SemiBold_Italic';
import { BarlowSemiCondensed_700Bold } from 'expo-google-fonts-barlow-semi-condensed/700Bold';
import { BarlowSemiCondensed_700Bold_Italic } from 'expo-google-fonts-barlow-semi-condensed/700Bold_Italic';
import { BarlowSemiCondensed_800ExtraBold } from 'expo-google-fonts-barlow-semi-condensed/800ExtraBold';
import { BarlowSemiCondensed_800ExtraBold_Italic } from 'expo-google-fonts-barlow-semi-condensed/800ExtraBold_Italic';
import { BarlowSemiCondensed_900Black } from 'expo-google-fonts-barlow-semi-condensed/900Black';
import { BarlowSemiCondensed_900Black_Italic } from 'expo-google-fonts-barlow-semi-condensed/900Black_Italic';
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 undefined;
} 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
||||
|-|-|-|
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
👩💻 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
- Barlow Semi Condensed on Google Fonts
- Google Fonts
- This package on npm
- This package on GitHub
- The Expo Google Fonts project on GitHub
expo-google-fonts-devDevlopment Package
🤝 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.
