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 (