getDetailBottom method
dynamic
getDetailBottom(
- dynamic param,
- 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);
}