@IlyaDoroshin and @David Nathan's answer pointed me in the right direction but I had to wrap each item in the scrollview with a touchable, rather than one touchable for everything.
...
{items.map(item => (
{ /* your scrollable content goes here */ }
))}