gpt4 book ai didi

javascript - 如何在react-native中拥有两个居中且可点击的图像链接

转载 作者:行者123 更新时间:2023-12-01 00:14:48 25 4
gpt4 key购买 nike

我希望每个图像旁边都有可点击的图像,这是我的观点:

    function MyView(props) {
return (
<View style={{ flex: 1, }}>
<View style={{
// width: 230,
flex: 1,
justifyContent: 'center',
alignItems: 'center',
}}>
<ExternalLink href="https://play.google.com/store/apps/details">
<Image
source={availableAtGooglePlayImage}
style={{
width: '100%',
height: 70,
flex: 1,
marginTop: 10,
resizeMode: 'contain',
}}
/>
</ExternalLink>
</View>
<View style={{
// width: 230,
flex: 1,
justifyContent: 'center',
alignItems: 'center',
}}>
<ExternalLink href="https://itunes.apple.com/fr/app">
<Image
resizeMode="stretch"
source={availableAtAppStoreImage}
style={{
width: '100%',
height: 70,
flex: 1,
marginTop: 10,
resizeMode: 'contain',
}}
/>
</ExternalLink>
</View>
);
}

一旦我在 ExternalLink 的父 View 上使用 flex: 1,图像就会消失。

我还没有找到一种方法来将这两个图像放在一起。

我只找到一种方法将它们放在每个上方,并且整个宽度都是可点击的,但我只希望图像可点击。

这在react-native中怎么可能?

最佳答案

请检查一下这段代码,这是一个工作示例 expo :

import * as React from 'react';
import { Text, View, StyleSheet ,Image,TouchableOpacity,Linking } from 'react-native';




export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<View>
<TouchableOpacity onPress={() =>Linking.openURL("https://play.google.com/store/apps/details")}>
<Image style={{height:50,width:50}} source={{uri:"https://source.unsplash.com/random"}} />
</TouchableOpacity>
</View>
<View>
<TouchableOpacity onPress={() =>Linking.openURL("https://itunes.apple.com/fr/app")}>
<Image style={{height:50,width:50}} source={{uri:"https://source.unsplash.com/random"}} />
</TouchableOpacity>
</View>
</View>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
flexDirection:'row',
justifyContent:'space-around',
alignItems:'center',

},

});

如有疑问请放心

关于javascript - 如何在react-native中拥有两个居中且可点击的图像链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59838149/

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