当前位置 : 主页 > 网络编程 > 其它编程 >

ReactNativeTextInput输入框赋值没反应

来源:互联网 收集:自由互联 发布时间:2023-07-02
TextInput输入框赋值没反应 RnEditText部分截图 RnEditText源码importReact,{Component,PropTypes}fromrea TextInput 输入框赋值没反应   //RnEditText部分截图   //RnEditText源码 import React, { Component, PropTypes} fr
TextInput输入框赋值没反应 RnEditText部分截图 RnEditText源码importReact,{Component,PropTypes}fromrea

react

TextInput 输入框赋值没反应

 

//RnEditText部分截图

 

//RnEditText源码

import React, { Component, PropTypes} from 'react';import { View, Text, Image, TextInput, StyleSheet,} from 'react-native';import AutoUtil from '../utils/AutoUtil';export default class RnEditText extends Component { static propTypes = { autoFocus: PropTypes.bool, caretHidden: PropTypes.bool, editable: PropTypes.bool, keyboardType: PropTypes.string, textAlign: PropTypes.string, maxLength: PropTypes.number, multiline: PropTypes.bool, onBlur: PropTypes.func, onChange: PropTypes.func, onChangeText: PropTypes.func, onEndEditing: PropTypes.func, onFocus: PropTypes.func, hint: PropTypes.string, value: PropTypes.string, secureTextEntry: PropTypes.bool, outStyle: PropTypes.number, textAlignVertical : PropTypes.string, textAlign : PropTypes.string, };render() { let Platform = require('Platform'); if (Platform.OS === 'android') { return ( ); } }}

上一篇:懂孙子兵法也没用!!_悟sphenic_新浪博客
下一篇:没有了
网友评论