首页 > 解决方案 > Display image from Bytes/bodyBytes in flutter

问题描述

enter image description here

I'm getting an image in the HTTP POST as bytes and I want to show that in that image in flutter

标签: flutterhttppost

解决方案


To show the image you can use Image.memory() it accepts Uint8List so you can pass your response.bodyBytes to show an image


推荐阅读