0
私はreact-native
を使用しています。私の入力フィールドはフルで表示されませんwidth
なぜですか?しかし、IOSをチェックすると、入力フィールドを全幅で正しく表示できます。 はここhttps://rnplay.org/apps/aHRkHAなぜ入力フィールドがアンドロイドで全幅を表示しないのですか?
import React from 'react';
import {
registerComponent,
} from 'react-native-playground';
import {
StatusBar,
StyleSheet,
Text,
TextInput,
View,
} from 'react-native';
class App extends React.Component {
render() {
return (
<View style={styles.container}>
<Text style={styles.heading}> Login</Text>
<TextInput
style={styles.loginInput}
placeholder="Type here to translate!"
/>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
backgroundColor: '#EF501E',
flex: 1,
alignItems: 'center'
},
logo: {
width: 50,
height: 50
},
heading: {
fontSize: 30,
marginTop: 20
},
loginInput: {
height: 50,
borderWidth: 1,
borderColor: '#33090C',
flexDirection: 'row',
justifyContent: 'center',
}
});
registerComponent(App);
のplsは私のコードを更新ND – user944513
は申し訳ありませんが、私はRN遊び場を使用していない共有しています。あなた自身を更新できますか? –