rowPair static method
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])))
]));
}