get image url from api and display it in flutter code example
Example 1: flutter download image from url
final ByteData imageData = await NetworkAssetBundle(Uri.parse("YOUR_URL")).load("");
final Uint8List bytes = imageData.buffer.asUint8List();
// display it with the Image.memory widget
Image.memory(bytes);
Example 2: image not shoing when i use network image,flutter
Try to add internet permission in android folder(do nothing with IOS part). Or jsut reinstall app.