嘿,我想知道是否有某种解决方法可以在 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 做这样的事情?