无论如何,在反应原生的<Text>中嵌入图像

Nar*_*ryc 5 react-native

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

Ric*_*cky 7

这是一个保留样式的解决方法

<View style={{flexDirection:'row', flexWrap:'wrap'}}>
    <Image
        style={styles.img}
        source={{uri: imageLink}} />
    <Text>
        {"sweet, this works"}
    </Text>
</View>
Run Code Online (Sandbox Code Playgroud)

  • 不适用于多行文字 (3认同)

Joh*_*mas 3

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

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