How to render items in two columns in react native?
问题 my skills in react native is basic, so i want to render items in two columns, i'm using this library https://github.com/GeekyAnts/react-native-easy-grid. componentDidMount() { return fetch(ConfigApp.URL+'json/data_posts.php') .then((response) => response.json()) .then((responseJson) => { this.setState({ isLoading: false, dataSource: responseJson }, function() { }); }) .catch((error) => { console.error(error); }); } Return return ( <Grid> <Col><FlatList data={ this.state.dataSource }