<View>
<Text>
{/* Adding notification if exists otherwise ignore */}
{post.hasNotification ? post.notifications: ''}
</Text>
</View>
如何将View组件包装在post.notifications周围?当我这样做时,我得到一个错误,当前不支持带文本的嵌套视图。我需要使用View组件包装它,以便对其进行样式设置。
答案 0 :(得分:0)
您不能在Text组件内使用View组件。试试这个,
<View>
{post.hasNotification ? <View><Text>post.notifications</Text></View> : ' '}
</View>