无论如何,在<text>中将图像嵌入到react-native中

时间:2015-12-30 15:42:05

标签: react-native

有人可能想要实现richtext edit或richtext视图。     在html中,我们可以使用内联图像标记来完成它,但是本机反应文本只能在其中嵌套文本。

2 个答案:

答案 0 :(得分:7)

这是一种保留样式

的解决方法
<View style={{flexDirection:'row', flexWrap:'wrap'}}>
    <Image
        style={styles.img}
        source={{uri: imageLink}} />
    <Text>
        {"sweet, this works"}
    </Text>
</View>

答案 1 :(得分:2)

这已经在0.16-rc中添加到React Native。更新您的React Native版本并在此处查看示例:

https://github.com/facebook/react-native/commit/a0268a7bfc8000b5297d2b50f81e000d1f479c76