> For the complete documentation index, see [llms.txt](https://rnkit.gitbook.io/starter-kit/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rnkit.gitbook.io/starter-kit/grid-screen.md).

# Grid Screen

It contains all the data with grid layout

## Grid Layout

```
<FlatList
  data={data}
  renderItem={this._renderItem.bind(this)}
  keyExtractor={(item, index) => index}
  numColumns={2}
/>
```

We used flatlist with 2 columns and some stylesheet to make it work.

## RenderItem

Ref: [RenderItem](/starter-kit/home-screen.md#renderitem)
