easy to use grid layout in react-native
npm install rn-grid-layout
import Grid from 'rn-grid-layout';
<Grid col={3} space={12}>
//- your components
</Grid>;
import Grid from 'rn-grid-layout';
<Grid template={[1, 2]} space={12}>
//- your components
<View></View> //- first component
<View></View> //- double width of first component
</Grid>;
ISC