@expo-google-fonts/atkinson-hyperlegible-next
v0.4.1
Published
Use the Atkinson Hyperlegible Next font family from Google Fonts in your Expo app
Downloads
26
Readme
@expo-google-fonts/atkinson-hyperlegible-next
This package lets you use the Atkinson Hyperlegible Next font family from Google Fonts in your Expo app.
Atkinson Hyperlegible Next

This font family contains 14 styles.
AtkinsonHyperlegibleNext_200ExtraLightAtkinsonHyperlegibleNext_300LightAtkinsonHyperlegibleNext_400RegularAtkinsonHyperlegibleNext_500MediumAtkinsonHyperlegibleNext_600SemiBoldAtkinsonHyperlegibleNext_700BoldAtkinsonHyperlegibleNext_800ExtraBoldAtkinsonHyperlegibleNext_200ExtraLight_ItalicAtkinsonHyperlegibleNext_300Light_ItalicAtkinsonHyperlegibleNext_400Regular_ItalicAtkinsonHyperlegibleNext_500Medium_ItalicAtkinsonHyperlegibleNext_600SemiBold_ItalicAtkinsonHyperlegibleNext_700Bold_ItalicAtkinsonHyperlegibleNext_800ExtraBold_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/atkinson-hyperlegible-next expo-fontNow add code like this to your project
import { Text, View } from "react-native";
import { useFonts } from '@expo-google-fonts/atkinson-hyperlegible-next/useFonts';
import { AtkinsonHyperlegibleNext_200ExtraLight } from '@expo-google-fonts/atkinson-hyperlegible-next/200ExtraLight';
import { AtkinsonHyperlegibleNext_300Light } from '@expo-google-fonts/atkinson-hyperlegible-next/300Light';
import { AtkinsonHyperlegibleNext_400Regular } from '@expo-google-fonts/atkinson-hyperlegible-next/400Regular';
import { AtkinsonHyperlegibleNext_500Medium } from '@expo-google-fonts/atkinson-hyperlegible-next/500Medium';
import { AtkinsonHyperlegibleNext_600SemiBold } from '@expo-google-fonts/atkinson-hyperlegible-next/600SemiBold';
import { AtkinsonHyperlegibleNext_700Bold } from '@expo-google-fonts/atkinson-hyperlegible-next/700Bold';
import { AtkinsonHyperlegibleNext_800ExtraBold } from '@expo-google-fonts/atkinson-hyperlegible-next/800ExtraBold';
import { AtkinsonHyperlegibleNext_200ExtraLight_Italic } from '@expo-google-fonts/atkinson-hyperlegible-next/200ExtraLight_Italic';
import { AtkinsonHyperlegibleNext_300Light_Italic } from '@expo-google-fonts/atkinson-hyperlegible-next/300Light_Italic';
import { AtkinsonHyperlegibleNext_400Regular_Italic } from '@expo-google-fonts/atkinson-hyperlegible-next/400Regular_Italic';
import { AtkinsonHyperlegibleNext_500Medium_Italic } from '@expo-google-fonts/atkinson-hyperlegible-next/500Medium_Italic';
import { AtkinsonHyperlegibleNext_600SemiBold_Italic } from '@expo-google-fonts/atkinson-hyperlegible-next/600SemiBold_Italic';
import { AtkinsonHyperlegibleNext_700Bold_Italic } from '@expo-google-fonts/atkinson-hyperlegible-next/700Bold_Italic';
import { AtkinsonHyperlegibleNext_800ExtraBold_Italic } from '@expo-google-fonts/atkinson-hyperlegible-next/800ExtraBold_Italic';
export default () => {
let [fontsLoaded] = useFonts({
AtkinsonHyperlegibleNext_200ExtraLight,
AtkinsonHyperlegibleNext_300Light,
AtkinsonHyperlegibleNext_400Regular,
AtkinsonHyperlegibleNext_500Medium,
AtkinsonHyperlegibleNext_600SemiBold,
AtkinsonHyperlegibleNext_700Bold,
AtkinsonHyperlegibleNext_800ExtraBold,
AtkinsonHyperlegibleNext_200ExtraLight_Italic,
AtkinsonHyperlegibleNext_300Light_Italic,
AtkinsonHyperlegibleNext_400Regular_Italic,
AtkinsonHyperlegibleNext_500Medium_Italic,
AtkinsonHyperlegibleNext_600SemiBold_Italic,
AtkinsonHyperlegibleNext_700Bold_Italic,
AtkinsonHyperlegibleNext_800ExtraBold_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: "AtkinsonHyperlegibleNext_200ExtraLight"
}}>
Atkinson Hyperlegible Next Extra Light
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AtkinsonHyperlegibleNext_300Light"
}}>
Atkinson Hyperlegible Next Light
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AtkinsonHyperlegibleNext_400Regular"
}}>
Atkinson Hyperlegible Next Regular
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AtkinsonHyperlegibleNext_500Medium"
}}>
Atkinson Hyperlegible Next Medium
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AtkinsonHyperlegibleNext_600SemiBold"
}}>
Atkinson Hyperlegible Next Semi Bold
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AtkinsonHyperlegibleNext_700Bold"
}}>
Atkinson Hyperlegible Next Bold
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AtkinsonHyperlegibleNext_800ExtraBold"
}}>
Atkinson Hyperlegible Next Extra Bold
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AtkinsonHyperlegibleNext_200ExtraLight_Italic"
}}>
Atkinson Hyperlegible Next Extra Light Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AtkinsonHyperlegibleNext_300Light_Italic"
}}>
Atkinson Hyperlegible Next Light Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AtkinsonHyperlegibleNext_400Regular_Italic"
}}>
Atkinson Hyperlegible Next Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AtkinsonHyperlegibleNext_500Medium_Italic"
}}>
Atkinson Hyperlegible Next Medium Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AtkinsonHyperlegibleNext_600SemiBold_Italic"
}}>
Atkinson Hyperlegible Next Semi Bold Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AtkinsonHyperlegibleNext_700Bold_Italic"
}}>
Atkinson Hyperlegible Next Bold Italic
</Text>
<Text style={{
fontSize,
paddingVertical,
// Note the quoting of the value for `fontFamily` here; it expects a string!
fontFamily: "AtkinsonHyperlegibleNext_800ExtraBold_Italic"
}}>
Atkinson Hyperlegible Next Extra Bold 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/atkinson-hyperlegible-next 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 Atkinson Hyperlegible Next 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
- Atkinson Hyperlegible Next 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.
