rowPair static method

Widget rowPair(
  1. List<Images> imgs
)

Implementation

static Widget rowPair(List<Images> imgs) {
  return SizedBox(
      height: 100,
      width: double.infinity,
      child: Row(children: [
        Expanded(child: imageDecoration(EmbedImage(images: imgs[0]))),
        Expanded(child: imageDecoration(EmbedImage(images: imgs[1])))
      ]));
}