Find your content:

Search form

You are here

com.facebook.react.uimanager.IllegalViewOperationException: Views nested within a <Text> must have a width and height

 
Share

It happens when you create text node inside text node.

For example

<Text>
   <Text>Welcome</Text>
   <Text>All</Text>
   <Text>ALT</Text>
</Text>

Change parent level node text to view

<View>
   <Text>Welcome</Text>
   <Text>All</Text>
   <Text>ALT</Text>
</View>

My Block Status

My Block Content