We are using RNNDrawer.showDrawer which renders a section list (tried FlatList and ScrollView as well). After scrolling it once or twice the section list starts to lag on iOS device (looks kind of fine on simulator). It's just a static list of 10-15 items, no dynamic rendering.
The app is in portrait mode only and we have already disabled dragging and swiping
disableDragging: true,
disableSwiping: true,
Other props:
direction: DirectionType.left,
dismissWhenTouchOutside: true,
Commenting these lines solves the issue:

Any suggestion on how to fix this issue? Or is there a way/prop to disable the pan responder?