@expo-google-fonts/droid-serif v0.0.2
@expo-google-fonts/droid-serif
This package lets you use the Droid Serif font family from Google Fonts in your Expo app.
v0.0.2
Droid Serif

This font family contains 4 styles.
DroidSerif_Regular400DroidSerif_Regular400_ItalicDroidSerif_Bold700DroidSerif_Bold700_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
yarn add @expo-google-fonts/droid-serif expo-font @use-expo/fontNow 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 } from '@use-expo/font';
import {
DroidSerif_Regular400,
DroidSerif_Regular400_Italic,
DroidSerif_Bold700,
DroidSerif_Bold700_Italic,
} from '@expo-google-fonts/droid-serif';
export default () => {
let [fontsLoaded] = useFonts({
DroidSerif_Regular400,
DroidSerif_Regular400_Italic,
DroidSerif_Bold700,
DroidSerif_Bold700_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, fontFamily: 'DroidSerif_Regular400' }}>
DroidSerif_Regular400
</Text>
<Text style={{ fontSize, paddingVertical, fontFamily: 'DroidSerif_Regular400_Italic' }}>
DroidSerif_Regular400_Italic
</Text>
<Text style={{ fontSize, paddingVertical, fontFamily: 'DroidSerif_Bold700' }}>
DroidSerif_Bold700
</Text>
<Text style={{ fontSize, paddingVertical, fontFamily: 'DroidSerif_Bold700_Italic' }}>
DroidSerif_Bold700_Italic
</Text>
</View>
);
}
};Gallery
DroidSerif_Regular400

DroidSerif_Regular400_Italic

DroidSerif_Bold700

DroidSerif_Bold700_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 will be less performant, and is not a good choice for most production deployments. But, it is extremely convenient for playing around with any style that you want.
Links
- Droid Serif 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
This file was generated. Instead of editing it by head, please make contributions to the generator
6 years ago