美文网首页
React Native Text文字显示不全

React Native Text文字显示不全

作者: Bana | 来源:发表于2020-09-12 14:47 被阅读0次
    // 全局设置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]  
         });  
    }; 
    

    相关文章

      网友评论

          本文标题:React Native Text文字显示不全

          本文链接:https://www.haomeiwen.com/subject/wnewektx.html