getDetailBottom method

dynamic getDetailBottom(
  1. dynamic param,
  2. dynamic context
)

Implementation

getDetailBottom(param, context) {
  myLogAll('getDetailBottom');
  //add  bottomImages
  List<Widget> bottom = [];
  if (param[gBottomImgs] != null) {
    List bottomImages = param[gBottomImgs];

    for (int i = 0; i < bottomImages.length; i++) {
      Widget wi = MyPic(bottomImages[i]);

      bottom.add(wi);
    }
  }

  return Row(children: bottom);
}