gpt4 book ai didi

javascript - 如何在 React Native 的同一行设置两个输入?

转载 作者:太空宇宙 更新时间:2023-11-03 11:38:51 25 4
gpt4 key购买 nike

嘿,我想在同一行上设置两个 textInputs,命名为Android 模拟器中的到期日期和 CVV。

<View style={{flex: 1, flexDirection: 'row'}}>
<Text style={styles.label}style= {{width : 100}}>Expiration date</Text>
<View style={styles.inputWrap}>
<TextInput style={styles.inputdate} />
</View>

<Text style={styles.label}>CVV</Text>
<View style={styles.inputWrap}>
<TextInput style={styles.inputcvv } maxLength={17} />
</View>

这里包含了两个 textInputs 的 CSS\

inputWrap: {
borderColor: '#cccccc',
borderBottomWidth: 1,
marginBottom: 10,
},
inputdate: {
fontSize: 14,
marginBottom : -12,
color: '#6a4595',
},
inputcvv: {
fontSize: 14,
marginBottom : -12,
color: '#6a4595',
},

请告诉我如何在同一行上设置它..提前致谢

最佳答案

对于 React Native,您需要使用 Flexbox 来布置您的组件。查看Flexbox docs here .

你想做这样的事情:

import React, { Component } from "react";
import { Text, View, StyleSheet, TextInput } from "react-native";

export default class App extends Component {
render() {
return (
<View style={styles.row}>
<View style={styles.inputWrap}>
<Text style={styles.label}>Expiration date</Text>
<TextInput style={styles.inputdate} />
</View>

<View style={styles.inputWrap}>
<Text style={styles.label}>CVV</Text>
<TextInput style={styles.inputcvv} maxLength={17} />
</View>
</View>
);
}
}

const styles = StyleSheet.create({
row: {
flex: 1,
flexDirection: "row"
},
inputWrap: {
flex: 1,
borderColor: "#cccccc",
borderBottomWidth: 1,
marginBottom: 10
},
inputdate: {
fontSize: 14,
marginBottom: -12,
color: "#6a4595"
},
inputcvv: {
fontSize: 14,
marginBottom: -12,
color: "#6a4595"
}
});

这里的重要部分是 flexDirection: "row"<View style={styles.row}> 上元素和 flex: 1<View style={styles.inputWrap}> 上元素。

您可以使用 Snack (Expo) 编辑和运行此代码段:

https://snack.expo.io/rySUxTKuZ

关于javascript - 如何在 React Native 的同一行设置两个输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45819846/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com