java // 构建错误图片占位符
Widget _buildErrorImage() {
return Container(
width: 120,
height: 80,
decoration: BoxDecoration(
color: Colors.grey.shade200,
borderRadius: BorderRadius.circular(8),
),
child: Icon(
Icons.image_not_supported_outlined,
size: 40,
color: Colors.grey.shade400,
),
);
}
本文作者:DingDangDog
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!