Launch Week Day 3: Introducing Organization Notifications in Socket.Learn More
Socket
Book a DemoSign in
Socket

expo-google-fonts-ibarra-real-nova

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

expo-google-fonts-ibarra-real-nova

Use the Ibarra Real Nova font family from Google Fonts in your Expo app

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
0
Created
Source

expo-google-fonts-ibarra-real-nova

npm version license publish size

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

Ibarra Real Nova

Ibarra Real Nova

This font family contains 8 styles.

  • IbarraRealNova_400Regular
  • IbarraRealNova_500Medium
  • IbarraRealNova_600SemiBold
  • IbarraRealNova_700Bold
  • IbarraRealNova_400Regular_Italic
  • IbarraRealNova_500Medium_Italic
  • IbarraRealNova_600SemiBold_Italic
  • IbarraRealNova_700Bold_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

expo install expo-google-fonts-ibarra-real-nova expo-font

Now add code like this to your project

import React from 'react';

import {
  Text,
  View,
} from 'react-native';
import { useFonts } from 'expo-google-fonts-ibarra-real-nova/useFonts';
import { IbarraRealNova_400Regular } from 'expo-google-fonts-ibarra-real-nova/400Regular';
import { IbarraRealNova_500Medium } from 'expo-google-fonts-ibarra-real-nova/500Medium';
import { IbarraRealNova_600SemiBold } from 'expo-google-fonts-ibarra-real-nova/600SemiBold';
import { IbarraRealNova_700Bold } from 'expo-google-fonts-ibarra-real-nova/700Bold';
import { IbarraRealNova_400Regular_Italic } from 'expo-google-fonts-ibarra-real-nova/400Regular_Italic';
import { IbarraRealNova_500Medium_Italic } from 'expo-google-fonts-ibarra-real-nova/500Medium_Italic';
import { IbarraRealNova_600SemiBold_Italic } from 'expo-google-fonts-ibarra-real-nova/600SemiBold_Italic';
import { IbarraRealNova_700Bold_Italic } from 'expo-google-fonts-ibarra-real-nova/700Bold_Italic';

export default () => {
  let [fontsLoaded] = useFonts({
    IbarraRealNova_400Regular,
    IbarraRealNova_500Medium,
    IbarraRealNova_600SemiBold,
    IbarraRealNova_700Bold,
    IbarraRealNova_400Regular_Italic,
    IbarraRealNova_500Medium_Italic,
    IbarraRealNova_600SemiBold_Italic,
    IbarraRealNova_700Bold_Italic,
  });

  let fontSize = 24;
  let paddingVertical = 6;

  if (!fontsLoaded) {
    return undefined;
  } 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:
              'IbarraRealNova_400Regular',
          }}>
          Ibarra Real Nova Regular
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily:
              'IbarraRealNova_500Medium',
          }}>
          Ibarra Real Nova Medium
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily:
              'IbarraRealNova_600SemiBold',
          }}>
          Ibarra Real Nova Semi Bold
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily:
              'IbarraRealNova_700Bold',
          }}>
          Ibarra Real Nova Bold
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily:
              'IbarraRealNova_400Regular_Italic',
          }}>
          Ibarra Real Nova Italic
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily:
              'IbarraRealNova_500Medium_Italic',
          }}>
          Ibarra Real Nova Medium Italic
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily:
              'IbarraRealNova_600SemiBold_Italic',
          }}>
          Ibarra Real Nova Semi Bold
          Italic
        </Text>

        <Text
          style={{
            fontSize,
            paddingVertical,
            // Note the quoting of the value for `fontFamily` here; it expects a string!
            fontFamily:
              'IbarraRealNova_700Bold_Italic',
          }}>
          Ibarra Real Nova Bold Italic
        </Text>
      </View>
    );
  }
};

IbarraRealNova_400RegularIbarraRealNova_500MediumIbarraRealNova_600SemiBold
IbarraRealNova_700BoldIbarraRealNova_400Regular_ItalicIbarraRealNova_500Medium_Italic
IbarraRealNova_600SemiBold_ItalicIbarraRealNova_700Bold_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-ibarra-real-nova 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 Ibarra Real Nova 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.

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

FAQs

Package last updated on 08 Mar 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts