定義一個容器
在容器child放入圖片
Image.network
Image.asset
Center(
child: Container(
height: 150,
width: 150,
decoration: const BoxDecoration(
color: Colors.yellow
),
child:Image.network('https://i.pinimg.com/564x/62/92/bc/6292bc7fc135d814017a6cab4336c1d8.jpg') ,
),
);```