美文网首页
2018-12-18 实现TextInput子类的问题

2018-12-18 实现TextInput子类的问题

作者: 056cc6443751 | 来源:发表于2018-12-18 15:41 被阅读0次

    我尝试写了写TextInput的子类,来统一修改字体,但是改变不了props.style里的fontSize,记录下,先看每个TextInput单独设置写。

    import {TextInput} from 'react-native';
    
    
    export default class AppTextInput extends TextInput {
    
        constructor(props) {
            super(props);
        }
    
        hasTriggleFontSizeChange = false;
    
        realFontSize = 12;
    
        componentWillMount() {
    
    
            var tempStyle = this.props.style;
    
            if (!this.hasTriggleFontSizeChange) {
                this.hasTriggleFontSizeChange = true;
    
                var tempFontSize = 6;
    
                if (tempStyle.hasOwnProperty('fontSize')) {
                    tempFontSize = tempStyle['fontSize'];
                }
    
                tempFontSize = 12;
    
                var newStyle = {fontSize: tempFontSize};
    
                let styles = this.props.style;
    
                styles = {...styles, fontSize: tempFontSize};
                //styles.fontSize = tempFontSize;//= {...styles, newStyle};
    
                this.setNativeProps({style:newStyle});
                this.props.style = styles//{...this.props.style, fontSize: tempFontSize};
            }
    
        }
    
        render() {
            return super.render();
        }
    
    
    }
    ···

    相关文章

      网友评论

          本文标题:2018-12-18 实现TextInput子类的问题

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