How can I disable only horizontal scrolling on my FlatList? Putting it to false doesnt work. I want to be able to scroll it vertically but not horizontally.
<FlatList data={data.me.friends.nodes} //horizontal={false} //scrollEnabled={false} renderItem={({ item }) => (<FriendItem friend={item} originatorId={data.me.id}/> )} keyExtractor={(item) => item.id.toString()} ListEmptyComponent={NoFriendsContainer} /> ```