@expo-google-fonts/karla
TypeScript icon, indicating that this package has built-in type declarations

0.3.0 • Public • Published

@expo-google-fonts/karla

npm version license publish size publish size

This package lets you use the Karla font family from Google Fonts in your Expo app.

Karla

Karla

This font family contains 14 styles.

  • Karla_200ExtraLight
  • Karla_300Light
  • Karla_400Regular
  • Karla_500Medium
  • Karla_600SemiBold
  • Karla_700Bold
  • Karla_800ExtraBold
  • Karla_200ExtraLight_Italic
  • Karla_300Light_Italic
  • Karla_400Regular_Italic
  • Karla_500Medium_Italic
  • Karla_600SemiBold_Italic
  • Karla_700Bold_Italic
  • Karla_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/karla expo-font

Now add code like this to your project

import { Text, View } from "react-native";
import { useFonts } from '@expo-google-fonts/karla/useFonts';
import { Karla_200ExtraLight } from '@expo-google-fonts/karla/200ExtraLight';
import { Karla_300Light } from '@expo-google-fonts/karla/300Light';
import { Karla_400Regular } from '@expo-google-fonts/karla/400Regular';
import { Karla_500Medium } from '@expo-google-fonts/karla/500Medium';
import { Karla_600SemiBold } from '@expo-google-fonts/karla/600SemiBold';
import { Karla_700Bold } from '@expo-google-fonts/karla/700Bold';
import { Karla_800ExtraBold } from '@expo-google-fonts/karla/800ExtraBold';
import { Karla_200ExtraLight_Italic } from '@expo-google-fonts/karla/200ExtraLight_Italic';
import { Karla_300Light_Italic } from '@expo-google-fonts/karla/300Light_Italic';
import { Karla_400Regular_Italic } from '@expo-google-fonts/karla/400Regular_Italic';
import { Karla_500Medium_Italic } from '@expo-google-fonts/karla/500Medium_Italic';
import { Karla_600SemiBold_Italic } from '@expo-google-fonts/karla/600SemiBold_Italic';
import { Karla_700Bold_Italic } from '@expo-google-fonts/karla/700Bold_Italic';
import { Karla_800ExtraBold_Italic } from '@expo-google-fonts/karla/800ExtraBold_Italic';

export default () => {

  let [fontsLoaded] = useFonts({
    Karla_200ExtraLight, 
    Karla_300Light, 
    Karla_400Regular, 
    Karla_500Medium, 
    Karla_600SemiBold, 
    Karla_700Bold, 
    Karla_800ExtraBold, 
    Karla_200ExtraLight_Italic, 
    Karla_300Light_Italic, 
    Karla_400Regular_Italic, 
    Karla_500Medium_Italic, 
    Karla_600SemiBold_Italic, 
    Karla_700Bold_Italic, 
    Karla_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: "Karla_200ExtraLight"
        }}>
          Karla Extra Light
        </Text>
        <Text style={{
          fontSize,
          paddingVertical,
          // Note the quoting of the value for `fontFamily` here; it expects a string!
          fontFamily: "Karla_300Light"
        }}>
          Karla Light
        </Text>
        <Text style={{
          fontSize,
          paddingVertical,
          // Note the quoting of the value for `fontFamily` here; it expects a string!
          fontFamily: "Karla_400Regular"
        }}>
          Karla Regular
        </Text>
        <Text style={{
          fontSize,
          paddingVertical,
          // Note the quoting of the value for `fontFamily` here; it expects a string!
          fontFamily: "Karla_500Medium"
        }}>
          Karla Medium
        </Text>
        <Text style={{
          fontSize,
          paddingVertical,
          // Note the quoting of the value for `fontFamily` here; it expects a string!
          fontFamily: "Karla_600SemiBold"
        }}>
          Karla Semi Bold
        </Text>
        <Text style={{
          fontSize,
          paddingVertical,
          // Note the quoting of the value for `fontFamily` here; it expects a string!
          fontFamily: "Karla_700Bold"
        }}>
          Karla Bold
        </Text>
        <Text style={{
          fontSize,
          paddingVertical,
          // Note the quoting of the value for `fontFamily` here; it expects a string!
          fontFamily: "Karla_800ExtraBold"
        }}>
          Karla Extra Bold
        </Text>
        <Text style={{
          fontSize,
          paddingVertical,
          // Note the quoting of the value for `fontFamily` here; it expects a string!
          fontFamily: "Karla_200ExtraLight_Italic"
        }}>
          Karla Extra Light Italic
        </Text>
        <Text style={{
          fontSize,
          paddingVertical,
          // Note the quoting of the value for `fontFamily` here; it expects a string!
          fontFamily: "Karla_300Light_Italic"
        }}>
          Karla Light Italic
        </Text>
        <Text style={{
          fontSize,
          paddingVertical,
          // Note the quoting of the value for `fontFamily` here; it expects a string!
          fontFamily: "Karla_400Regular_Italic"
        }}>
          Karla Italic
        </Text>
        <Text style={{
          fontSize,
          paddingVertical,
          // Note the quoting of the value for `fontFamily` here; it expects a string!
          fontFamily: "Karla_500Medium_Italic"
        }}>
          Karla Medium Italic
        </Text>
        <Text style={{
          fontSize,
          paddingVertical,
          // Note the quoting of the value for `fontFamily` here; it expects a string!
          fontFamily: "Karla_600SemiBold_Italic"
        }}>
          Karla Semi Bold Italic
        </Text>
        <Text style={{
          fontSize,
          paddingVertical,
          // Note the quoting of the value for `fontFamily` here; it expects a string!
          fontFamily: "Karla_700Bold_Italic"
        }}>
          Karla Bold Italic
        </Text>
        <Text style={{
          fontSize,
          paddingVertical,
          // Note the quoting of the value for `fontFamily` here; it expects a string!
          fontFamily: "Karla_800ExtraBold_Italic"
        }}>
          Karla Extra Bold Italic
        </Text>
      </View>
    );
  }
};

🔡 Gallery

Karla_200ExtraLight Karla_300Light Karla_400Regular
Karla_500Medium Karla_600SemiBold Karla_700Bold
Karla_800ExtraBold Karla_200ExtraLight_Italic Karla_300Light_Italic
Karla_400Regular_Italic Karla_500Medium_Italic Karla_600SemiBold_Italic
Karla_700Bold_Italic Karla_800ExtraBold_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 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/karla 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 Karla 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

🤝 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.

Readme

Keywords

none

Package Sidebar

Install

npm i @expo-google-fonts/karla

Weekly Downloads

733

Version

0.3.0

License

MIT

Unpacked Size

1.76 MB

Total Files

64

Last publish

Collaborators

  • brentvatne
  • ccheever
  • kadikraman
  • jake7