React Native Expo 字体,它们已加载,但我看不到应用程序界面中的变化

发布于 2025-01-11 20:14:03 字数 1080 浏览 0 评论 0原文

我是使用 React Native 的新手。我正在使用与此类似的其他主题中贡献的代码: 我使用一个钩子:

import * as Font from "expo-font";
 
export default useFonts = async () =>
  await Font.loadAsync({
     Bebas: require('../assets/fonts/BebasNeue-Regular.ttf'),
    Montserrat: require('../assets/fonts/Montserrat-Italic-VariableFont_wght.ttf'),
    Inter: require('../assets/fonts/Inter-Black.otf')
  });

然后在我的 app.js 中:

import * as Font from 'expo-font';
import AppLoading from 'expo-app-loading';
import React, { useState } from 'react';

import useFonts from './hooks/useFonts';

export default function App() {
  const [IsReady, SetIsReady] = useState(false);

  const LoadFonts = async () => {
    await useFonts();
  };

  if (!IsReady) {
    return (
      <AppLoading
        startAsync={LoadFonts}
        onFinish={() => SetIsReady(true)}
        onError={() => {}}
      />
    );
  }

  return <View styles={styles.container}>{/* Code Here */}</View>;
}

然后我尝试在不同的屏幕中使用相同的名称,我认为它们加载正确(没有错误),但是当我看不到变化时我重新启动我的应用程序。

I am new to using react native. I am using the code contributed in other topics similar to this one:
I use a hook:

import * as Font from "expo-font";
 
export default useFonts = async () =>
  await Font.loadAsync({
     Bebas: require('../assets/fonts/BebasNeue-Regular.ttf'),
    Montserrat: require('../assets/fonts/Montserrat-Italic-VariableFont_wght.ttf'),
    Inter: require('../assets/fonts/Inter-Black.otf')
  });

And then in my app.js:

import * as Font from 'expo-font';
import AppLoading from 'expo-app-loading';
import React, { useState } from 'react';

import useFonts from './hooks/useFonts';

export default function App() {
  const [IsReady, SetIsReady] = useState(false);

  const LoadFonts = async () => {
    await useFonts();
  };

  if (!IsReady) {
    return (
      <AppLoading
        startAsync={LoadFonts}
        onFinish={() => SetIsReady(true)}
        onError={() => {}}
      />
    );
  }

  return <View styles={styles.container}>{/* Code Here */}</View>;
}

I then try to use them with the same name in my different screens, and I think they are loaded correctly, (no error), but I can't see the change when I restart my application.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文