I need to display an Image.memory
in my project, but when I put this code in the body
of Scaffold
, it doesn't show.
import 'dart:typed_data';
import 'package:flutter/material.dart';
import 'dart:convert';
Codec<String, String> stringToBase64 = utf8.fuse(base64);
String imagenJson = "Here, I put the BASE64 string";
Uint8List _image = base64Decode(imagenJson);
Image.memory(_image);
return Scaffold(
appBar: AppBar(
title: Text('Pruebas BASE64'),
),
body: Image.memory(_image)
);