使用Image.network加載網(wǎng)絡(luò)圖片時,有可能出現(xiàn)“type 'Null' is not a subtype of type 'List<int>' in type cast”異常,這是由于圖片源地址出現(xiàn)了問題。
解決辦法
Image.network(
'https://img3.doubanio.com/view/photo/s_ratio_poster/public/p2541240741.webp',
height: 100,
width: 50,
errorBuilder: (_, __, ___) => Image.asset(
'assets/images/app_img.jpeg',
height: 100,
width: 50),
)