GiphyGrid.fixedWidth constructor

const GiphyGrid.fixedWidth({
  1. Key? key,
  2. required GiphySource giphySource,
  3. void onSelected(
    1. GiphyGif gif
    )?,
  4. double spacing = 4.0,
  5. BorderRadius? borderRadius,
  6. int minColumns = 2,
})

Shows squared GIFs in a varying number of columns

Implementation

const GiphyGrid.fixedWidth({
  Key? key,
  required this.giphySource,
  this.onSelected,
  this.spacing = 4.0,
  this.borderRadius,
  this.minColumns = 2,
})  : gridDelegator = _fixedWidth,
      super(key: key);