<ModalView
close={this.close}
visible={this.state.visible}
customerlayout={{flex: 1,}}
contentView={this.renderContent}/>
弹出层renderContent### ,含有TextInput,无法弹出软键盘
renderContent = () => {
return (
<View style={{
width: width-200,
height: 100,
flexDirection: 'row',
alignItems: 'center',
backgroundColor: 'white'
}}>
<TextInput
autoFocus={true}
placeholder={'1111'}
maxLength={3}
onChangeText={(text) => {
console.log('text', text);
}}
style={{padding: 0, }}
/>
)
};
大神有啥解决办法吗