importReact,{Component, useEffect, useState } from 'react';import{AppLoading,Font,Permissions} from 'expo';importAppNavigation from './config/route';exportdefaultclassApp extends Component{
constructor(props){
super(props);this.state ={
isReady:false,};}
async componentWillMount(){
await Permissions.askAsync(Permissions.LOCATION);}
async _getFonts(){
await Font.loadAsync({'noto-font': require('./assets/fonts/NotoKufiArabic-Regular.ttf'),});}
render(){if(!this.state.isReady){return(<AppLoading startAsync={this._getFonts} onFinish={()=>this.setState({ isReady:true})}/>);}return<AppNavigation/>;}}
ويحدث معي هذا الخطأ عند تشغيل المشروع
fontFamily "space-mono" is not a system font and has not been loaded through Font.loadAsync.
- If you intended to use a system font, make sure you typed the name correctly and that it is supported by your device operating system.
السؤال
عبد النور محمد
مرحبا لدي الشيفرة التالية
ويحدث معي هذا الخطأ عند تشغيل المشروع
fontFamily "space-mono" is not a system font and has not been loaded through Font.loadAsync. - If you intended to use a system font, make sure you typed the name correctly and that it is supported by your device operating system.
2 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.