@expo-google-fonts/noto-sans-display v0.4.0
@expo-google-fonts/noto-sans-display
This package lets you use the Noto Sans Display font family from Google Fonts in your Expo app.
Noto Sans Display

This font family contains 18 styles.
NotoSansDisplay_100ThinNotoSansDisplay_200ExtraLightNotoSansDisplay_300LightNotoSansDisplay_400RegularNotoSansDisplay_500MediumNotoSansDisplay_600SemiBoldNotoSansDisplay_700BoldNotoSansDisplay_800ExtraBoldNotoSansDisplay_900BlackNotoSansDisplay_100Thin_ItalicNotoSansDisplay_200ExtraLight_ItalicNotoSansDisplay_300Light_ItalicNotoSansDisplay_400Regular_ItalicNotoSansDisplay_500Medium_ItalicNotoSansDisplay_600SemiBold_ItalicNotoSansDisplay_700Bold_ItalicNotoSansDisplay_800ExtraBold_ItalicNotoSansDisplay_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/noto-sans-display expo-fontNow add code like this to your project
import { Text, View } from "react-native";
import { useFonts } from '@expo-google-fonts/noto-sans-display/useFonts';
import { NotoSansDisplay_100Thin } from '@expo-google-fonts/noto-sans-display/100Thin';
import { NotoSansDisplay_200ExtraLight } from '@expo-google-fonts/noto-sans-display/200ExtraLight';
import { NotoSansDisplay_300Light } from '@expo-google-fonts/noto-sans-display/300Light';
import { NotoSansDisplay_400Regular } from '@expo-google-fonts/noto-sans-display/400Regular';
import { NotoSansDisplay_500Medium } from '@expo-google-fonts/noto-sans-display/500Medium';
import { NotoSansDisplay_600SemiBold } from '@expo-google-fonts/noto-sans-display/600SemiBold';
import { NotoSansDisplay_700Bold } from '@expo-google-fonts/noto-sans-display/700Bold';
import { NotoSansDisplay_800ExtraBold } from '@expo-google-fonts/noto-sans-display/800ExtraBold';
import { NotoSansDisplay_900Black } from '@expo-google-fonts/noto-sans-display/900Black';
import { NotoSansDisplay_100Thin_Italic } from '@expo-google-fonts/noto-sans-display/100Thin_Italic';
import { NotoSansDisplay_200ExtraLight_Italic } from '@expo-google-fonts/noto-sans-display/200ExtraLight_Italic';
import { NotoSansDisplay_300Light_Italic } from '@expo-google-fonts/noto-sans-display/300Light_Italic';
import { NotoSansDisplay_400Regular_Italic } from '@expo-google-fonts/noto-sans-display/400Regular_Italic';
import { NotoSansDisplay_500Medium_Italic } from '@expo-google-fonts/noto-sans-display/500Medium_Italic';
import { NotoSansDisplay_600SemiBold_Italic } from '@expo-google-fonts/noto-sans-display/600SemiBold_Italic';
import { NotoSansDisplay_700Bold_Italic } from '@expo-google-fonts/noto-sans-display/700Bold_Italic';
import { NotoSansDisplay_800ExtraBold_Italic } from '@expo-google-fonts/noto-sans-display/800ExtraBold_Italic';
import { NotoSansDisplay_900Black_Italic } from '@expo-google-fonts/noto-sans-display/900Black_Italic';
export default () => {
let [fontsLoaded] = useFonts({
NotoSansDisplay_100Thin,
NotoSansDisplay_200ExtraLight,
NotoSansDisplay_300Light,
NotoSansDisplay_400Regular,
NotoSansDisplay_500Medium,
NotoSansDisplay_600SemiBold,
NotoSansDisplay_700Bold,
NotoSansDisplay_800ExtraBold,
NotoSansDisplay_900Black,
NotoSansDisplay_100Thin_Italic,
NotoSansDisplay_200ExtraLight_Italic,
NotoSansDisplay_300Light_Italic,
NotoSansDisplay_400Regular_Italic,
NotoSansDisplay_500Medium_Italic,
NotoSansDisplay_600SemiBold_Italic,
NotoSansDisplay_700Bold_Italic,
NotoSansDisplay_800ExtraBold_Italic,
NotoSansDisplay_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: "NotoSansDisplay_100Thin"
}}>
Noto Sans Display Thin
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_200ExtraLight"
}}>
Noto Sans Display Extra Light
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_300Light"
}}>
Noto Sans Display Light
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_400Regular"
}}>
Noto Sans Display Regular
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_500Medium"
}}>
Noto Sans Display Medium
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_600SemiBold"
}}>
Noto Sans Display Semi Bold
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_700Bold"
}}>
Noto Sans Display Bold
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_800ExtraBold"
}}>
Noto Sans Display Extra Bold
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_900Black"
}}>
Noto Sans Display Black
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_100Thin_Italic"
}}>
Noto Sans Display Thin Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_200ExtraLight_Italic"
}}>
Noto Sans Display Extra Light Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_300Light_Italic"
}}>
Noto Sans Display Light Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_400Regular_Italic"
}}>
Noto Sans Display Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_500Medium_Italic"
}}>
Noto Sans Display Medium Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_600SemiBold_Italic"
}}>
Noto Sans Display Semi Bold Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_700Bold_Italic"
}}>
Noto Sans Display Bold Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_800ExtraBold_Italic"
}}>
Noto Sans Display Extra Bold Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "NotoSansDisplay_900Black_Italic"
}}>
Noto Sans Display 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/noto-sans-display 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 Noto Sans Display 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
- Noto Sans Display 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.

















