码迷,mamicode.com
首页 > 其他好文 > 详细

react-native中expo的真机测试字体不加载的坑

时间:2018-08-31 21:09:12      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:imageview   auto   tor   struct   加载   this   images   false   async   

native-base的字体问题Roboto_medium

技术分享图片
把native-base中的Fonts文件夹放到项目的根目录.

import {Font,AppLoading} from ‘expo‘;
import {Root} from ‘native-base‘;



export default class App extends React.Component {
  constructor(){
    super();
    this.state={
      loading:true
    }
  }
  async componentWillMount() {
    await Expo.Font.loadAsync({
      ‘Roboto‘: require(‘./Fonts/Roboto.ttf‘),
      ‘Roboto_medium‘: require(‘./Fonts/Roboto_medium.ttf‘),
    });
    this.setState({
      loading:false
    });

  }


render() {
    if(this.state.loading){
      return (
        <Root>
          <AppLoading/>
        </Root>
      )
    }

    return ()
}

react-native中expo的真机测试字体不加载的坑

标签:imageview   auto   tor   struct   加载   this   images   false   async   

原文地址:https://www.cnblogs.com/zhongchao666/p/9567482.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!