嘿,我想知道是否有某种解决办法在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上使用React Native做这样的事情?
答案 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>