React Native:使用<Text>标签内的<Image>标签呈现问题

时间:2020-01-07 07:05:34

标签: react-native jsx

我需要在<Image>元素内渲染<Text>。原因是使用了CMS,但这与当前的问题并没有真正的联系。

在iPhone上的<Text>内部渲染图像时,它会添加文件图标的背景轮廓:

    <Text>
        <Image source={require('../../assets/images/logo/heart.png')} resizeMode="contain"  style={{height: 120, width: 120 }}  />
    </Text>
    <Image source={require('../../assets/images/logo/heart.png')} resizeMode="contain" style={{height: 20, width: 20 }}  />

第一个创建文件轮廓,第二个正确呈现。 我需要在没有轮廓的文本内渲染图像。

enter image description here

0 个答案:

没有答案