ListTile(
contentPadding: EdgeInsets.all(5),
title: Text(myList[position]['title']),
subtitle: Text(myList[position]['subTitle'] + ""),
leading: Image.network(myList[position]['iamge'] + ""),
);
网友评论