2017-09-27 60 views
-1

我需要創建一個反應原生屏幕,顯示的圖像內嵌React-Native wrap文本和顯示內的圖像

因此,視圖基本上會有文字和圖像重複,最好的方法是什麼?

+0

您的問題太寬泛,也基於觀點。我建議你閱讀[如何提出一個好問題](https://stackoverflow.com/help/how-to-ask)。 – Kraylog

回答

0

你的問題是相當模糊的,但可能它是直線前進,因爲這...

<View> 
    <Text>Some Text</Text> 
    <Image 
     style={{width: 50, height: 50}} 
     source={{uri: 'https://facebook.github.io/react/img/logo_og.png'}} 
    /> 
    <Text>Some Text</Text> 
    <Image 
     style={{width: 50, height: 50}} 
     source={{uri: 'https://facebook.github.io/react/img/logo_og.png'}} 
    /> 
    <Text>Some Text</Text> 
    <Image 
     style={{width: 50, height: 50}} 
     source={{uri: 'https://facebook.github.io/react/img/logo_og.png'}} 
    /> 
</View> 

您還可以,如果你想要的文字是在圖像的頂部做到這一點,...

<Image 
    style={{width: 50, height: 50}} 
    source={{uri: 'https://facebook.github.io/react/img/logo_og.png'}} 
> 
    <Text>Some Text</Text> 
</Image> 
+0

謝謝!此外,圖像必須內聯。問題可以在文本之間有圖像 – mak