React Native Text文字显示不全

2020-09-12  本文已影响0人  Bana
// 全局设置text组件的fontFamily
import React, { Component } from 'react';  
import { View, Platform, Text } from 'react-native';  
  const defaultFontFamily = {  ...Platform.select({  android: { fontFamily: '' }  })  };  
  const oldRender = Text.render;  
Text.render = function(...args) {  
    const origin = oldRender.call(this, ...args);  
    return React.cloneElement(origin, {  
       style: [defaultFontFamily, origin.props.style]  
     });  
}; 
上一篇 下一篇

猜你喜欢

热点阅读