ant-design-mobile-rn
ant-design-mobile-rn copied to clipboard
Picker line style dislocation
Operating environment: "@ant-design/icons-react-native": "^2.3.2", "@ant-design/react-native": "^5.0.0", "react": "17.0.2", "react-native": "0.67.3",
Problems encountered: Picker line style dislocation
Project code snippet:
<View style={styles.container}> <Text>{data.label + ':'}</Text> <Picker data={this.areaList} cols={this.columns} value={this.state.areaCode} onChange={this.onChange}> <TouchableOpacity style={styles.selectInputBox} onPress={() => { }}> <View style={styles.selectContentBox}> <Text style={styles.selectContent}>{this.state.areaName}</Text> </View> <Image source={require('../../../../image/component/arrow-down.png')} resizeMode="contain" style={styles.selectImg} /> </TouchableOpacity> </Picker> </View>
+1