当键盘以react-native打开时,布局不会调整

时间:2018-05-12 15:34:35

标签: react-native react-native-android react-native-ios expo

这是一个非常简单的反应原生代码,我正在使用世博会。 然后键盘打开它覆盖textinput这是不希望的功能谁能帮助我为什么?它似乎在纯粹的反应原生中起作用。

import * as React from "react";
import {
  StyleSheet,
  View,KeyboardAvoidingView,
  TextInput,
} from "react-native";

class Logins extends React.Component {
  render() {
    return (
      <KeyboardAvoidingView style={styles.container} behavior="padding" enabled>
        <TextInput placeholder="Password" style={styles.textinputstyle} />
      </KeyboardAvoidingView>
    );
  }
}
const styles = StyleSheet.create({
  container: {
    flex: 1,
    paddingTop: 450,
  },textinputstyle:{
    fontSize:25,
    color:"red",
    paddingBottom:10,
  }
});

export default Logins;

Here是小吃的链接。

1 个答案:

答案 0 :(得分:0)