GiphyGrid.fixedWidthVaryingHeight constructor

const GiphyGrid.fixedWidthVaryingHeight({
  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 GIFs in a varying number of columns

Implementation

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