Closed
Description
When an error happens inside ListView
's renderRow
property the error is swallowed and never shown on the RedBox.
Ex:
<ListView
renderRow={() => <TouchableHighlight><Text>a</Text><Text>b</Text></TouchableHighlight>}
dataSource={dataSource}
/>
Because TouchableHighlight
accepts only one child, there should be an error thrown, but what happens is that no item from the dataSource is ever rendered.
I'm using v0.7.1