I have a FlatList with multiple columns:
you can just add if else condition inside renderItems and check the index modulus to add separator.. I just use this one and everything works great.
something like :-
_renderItem = ({item,index}) => { return( {item.key} ) }
hope this will help you.