Search code examples
react-nativescrollviewflatlist

react native scrollView inside Flatlist header can not scroll


based on the requirement, I need to design a ScrollView(vertical) inside FlatList(vertical)

here is my layout

<FlatList>
  renderHeader = <ScrollView/>
  renderData= ...
</FlatList>

My code run normally, but the scrollView can not scroll, can someone help


Solution

  • This is a problem only in android. add nativeScrollEnabled prop to ScrollView.