有没有人找到在Android上的React Native中嵌套视图的解决方法?

时间:2017-04-03 00:03:51

标签: android reactjs react-native

嘿,我想知道是否有某种解决办法在Android上嵌套React Native的视图,似乎像

这样的东西

class BlueIsCool extends Component { render() { return ( <Text> There is a blue square <View style={{width: 50, height: 50, backgroundColor: 'steelblue'}} /> in between my text. </Text> ); } }

在Android上无法使用

。有没有办法在Android上使用React Native做这样的事情?

1 个答案:

答案 0 :(得分:3)

你可以简单地做

<View>
    <Text>
        There is a blue square
    </Text>
    <View style={{width: 50, height: 50, backgroundColor: 'steelblue'}} />
    <Text>
        in between my text.
    </Text>
</View>