gpt4 book ai didi

react-native - 如何在 React Native 中为图像添加标题

转载 作者:行者123 更新时间:2023-12-04 04:13:41 25 4
gpt4 key购买 nike

     <Image
style={styles.Img}
source={require('./Images/x.png')}>
</Image>

Img:{
width:200,height:200,resizeMode: 'contain'
}

我正在学习 React Native。不知道该怎么做。需要标题在图片下方并居中对齐。我正在使用 Android

最佳答案

检查以下示例。

import React, {Component} from 'react';
import {AppRegistry, Text, Image, View} from 'react-native';

class StackOveflow extends Component {
render() {
return (
<View style={{flex:1,alignItems:'center',justifyContent:'center'}}>
<Image
style={{width:200,height:200}}
source={{uri: 'https://facebook.github.io/react/img/logo_og.png'}}
/>
<Text> Hello world! </Text>
</View>
);
}
}

AppRegistry.registerComponent('StackOveflow', () => StackOveflow);

让我知道这是否适合您。

关于react-native - 如何在 React Native 中为图像添加标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40299019/

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