@expo-google-fonts/alumni-sans v0.4.1
@expo-google-fonts/alumni-sans
This package lets you use the Alumni Sans font family from Google Fonts in your Expo app.
Alumni Sans

This font family contains 18 styles.
AlumniSans_100ThinAlumniSans_200ExtraLightAlumniSans_300LightAlumniSans_400RegularAlumniSans_500MediumAlumniSans_600SemiBoldAlumniSans_700BoldAlumniSans_800ExtraBoldAlumniSans_900BlackAlumniSans_100Thin_ItalicAlumniSans_200ExtraLight_ItalicAlumniSans_300Light_ItalicAlumniSans_400Regular_ItalicAlumniSans_500Medium_ItalicAlumniSans_600SemiBold_ItalicAlumniSans_700Bold_ItalicAlumniSans_800ExtraBold_ItalicAlumniSans_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/alumni-sans expo-fontNow add code like this to your project
import { Text, View } from "react-native";
import { useFonts } from '@expo-google-fonts/alumni-sans/useFonts';
import { AlumniSans_100Thin } from '@expo-google-fonts/alumni-sans/100Thin';
import { AlumniSans_200ExtraLight } from '@expo-google-fonts/alumni-sans/200ExtraLight';
import { AlumniSans_300Light } from '@expo-google-fonts/alumni-sans/300Light';
import { AlumniSans_400Regular } from '@expo-google-fonts/alumni-sans/400Regular';
import { AlumniSans_500Medium } from '@expo-google-fonts/alumni-sans/500Medium';
import { AlumniSans_600SemiBold } from '@expo-google-fonts/alumni-sans/600SemiBold';
import { AlumniSans_700Bold } from '@expo-google-fonts/alumni-sans/700Bold';
import { AlumniSans_800ExtraBold } from '@expo-google-fonts/alumni-sans/800ExtraBold';
import { AlumniSans_900Black } from '@expo-google-fonts/alumni-sans/900Black';
import { AlumniSans_100Thin_Italic } from '@expo-google-fonts/alumni-sans/100Thin_Italic';
import { AlumniSans_200ExtraLight_Italic } from '@expo-google-fonts/alumni-sans/200ExtraLight_Italic';
import { AlumniSans_300Light_Italic } from '@expo-google-fonts/alumni-sans/300Light_Italic';
import { AlumniSans_400Regular_Italic } from '@expo-google-fonts/alumni-sans/400Regular_Italic';
import { AlumniSans_500Medium_Italic } from '@expo-google-fonts/alumni-sans/500Medium_Italic';
import { AlumniSans_600SemiBold_Italic } from '@expo-google-fonts/alumni-sans/600SemiBold_Italic';
import { AlumniSans_700Bold_Italic } from '@expo-google-fonts/alumni-sans/700Bold_Italic';
import { AlumniSans_800ExtraBold_Italic } from '@expo-google-fonts/alumni-sans/800ExtraBold_Italic';
import { AlumniSans_900Black_Italic } from '@expo-google-fonts/alumni-sans/900Black_Italic';
export default () => {
let [fontsLoaded] = useFonts({
AlumniSans_100Thin,
AlumniSans_200ExtraLight,
AlumniSans_300Light,
AlumniSans_400Regular,
AlumniSans_500Medium,
AlumniSans_600SemiBold,
AlumniSans_700Bold,
AlumniSans_800ExtraBold,
AlumniSans_900Black,
AlumniSans_100Thin_Italic,
AlumniSans_200ExtraLight_Italic,
AlumniSans_300Light_Italic,
AlumniSans_400Regular_Italic,
AlumniSans_500Medium_Italic,
AlumniSans_600SemiBold_Italic,
AlumniSans_700Bold_Italic,
AlumniSans_800ExtraBold_Italic,
AlumniSans_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: "AlumniSans_100Thin"
}}>
Alumni Sans Thin
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_200ExtraLight"
}}>
Alumni Sans Extra Light
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_300Light"
}}>
Alumni Sans Light
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_400Regular"
}}>
Alumni Sans Regular
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_500Medium"
}}>
Alumni Sans Medium
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_600SemiBold"
}}>
Alumni Sans Semi Bold
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_700Bold"
}}>
Alumni Sans Bold
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_800ExtraBold"
}}>
Alumni Sans Extra Bold
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_900Black"
}}>
Alumni Sans Black
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_100Thin_Italic"
}}>
Alumni Sans Thin Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_200ExtraLight_Italic"
}}>
Alumni Sans Extra Light Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_300Light_Italic"
}}>
Alumni Sans Light Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_400Regular_Italic"
}}>
Alumni Sans Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_500Medium_Italic"
}}>
Alumni Sans Medium Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_600SemiBold_Italic"
}}>
Alumni Sans Semi Bold Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_700Bold_Italic"
}}>
Alumni Sans Bold Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_800ExtraBold_Italic"
}}>
Alumni Sans Extra Bold Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AlumniSans_900Black_Italic"
}}>
Alumni Sans 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/alumni-sans 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 Alumni Sans 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
- Alumni Sans 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.

















