I am using native base, and the error is for flatlist that it contains inbuild scroll view no need to nest it into scrollView Image 1 code:
<Container>
<Content>
<View>
***
</View>
<FlatList
{...props}
/>
</Content>
</Container>
Image 2 code:
<View>
<View>
<View>
***
</View>
<FlatList
{...props}
/>
</View>
</View>
I want both parts to scroll without error, can anyone help me out with this?
You'll need to slightly modify your structure