2017-02-15 10 views
0

グリッドビューでサンプルグリッドビュープロジェクトを開発中です。私はグリッドビューで2つの行を取得しています。しかし、私は3列にReact native:グリッドビューで5つの行を分割するにはどうすればよいですか?

を表示するここで、これは私のコードです:

var CELLS_PER_ROW = 2; 

<GridView 
      key={this.props.key} 
      items={this.state.dataSource} 
      itemsPerRow={CELLS_PER_ROW} 
      renderItem={this.renderItem.bind(this)} 
      style={{padding:15}}/> 

答えて

0

は、単にあなたがしたい行数とCELLS_PER_ROWを割り当てます。コードはここにあります

`var CELLS_PER_ROW = 3; // number of rows you want 

<GridView 
      key={this.props.key} 
      items={this.state.dataSource} 
      itemsPerRow={CELLS_PER_ROW} 
      renderItem={this.renderItem.bind(this)} 
      style={{padding:15}}/>` 

あなたのために働くことを望みます:-)。

+0

ああ、本当にお返事ありがとうございます – Lavaraju

関連する問題