文章参考地址:
http://bbs.reactnative.cn/topic/204/%E8%AE%BE%E7%BD%AEreact-native%E8%87%AA%E5%AE%9A%E4%B9%89%E5%AD%97%E4%BD%93
1、引入头文件
import React,{ Component } from 'react'
/** * 只需引入该文件即可 * 为源类型扩充 * 自定义字体样式,_.wrap是lodash的一个函数,用来包裹传入的函数,然后返回一个新的函数 */
Text.prototype.render = _.wrap(Text.prototype.render,function (func,...args) {
let originText = func.apply(this,args);
// let newTesxt = _.cloneDeep(originText);
// originText.props.allowFontScaling = false;
// originText.props.children = 'hhh';
// return cloneElement(originText,{
// style: [
// originText.props.style,
// styles.defaultFontFamily
// ]
// });
return React.cloneElement(originText,{allowFontScaling: false});
});
原文链接:https://www.f2er.com/react/301783.html