Using the (corrected) simple example from #214 (comment):
<View style={{ flex: 1 }}>
<TableView style={{ flex: 1 }} >
<Section label="Section 1">
<Item key={1}>Item 1</Item>
<Item key={2}>Item 1</Item>
<Item key={3}>Item 1</Item>
<Item key={4}>Item 1</Item>
<Item key={5}>Item 1</Item>
<Item key={6}>Item 1</Item>
<Item key={7}>Item 1</Item>
</Section>
</TableView>
</View>
the items are not visible except for the section header and the separators as shown in the screenshot below. When you touch an item, it appears in dark (reverse) color, as shown in the second screenshot.
I tried adding the transparent prop to the <Item> as suggested in #210, but that has no effect.


Using the (corrected) simple example from #214 (comment):
the items are not visible except for the section header and the separators as shown in the screenshot below. When you touch an item, it appears in dark (reverse) color, as shown in the second screenshot.
I tried adding the

transparentprop to the<Item>as suggested in #210, but that has no effect.