Using react native, a ScrollView can snap to respecified points on the y axis of the ScrollView element:
<ScrollView
snapToOffsets={[0,96]}
This will snap to 0 and to 96. It appears however that every subsequent snap point must also be declared.
Is there a way to snap to that point at 96 and then scroll normally without snap offsets from that point going down.
This behaviour can be done on the web with CSS but there is no clear documentation on how to do the same in react. Imagine a header that we want to snap underneath of on the first scroll and then scroll normally thereafter.