How can I show a pdf in base64 in flutter?
问题 I have the content of a pdf in base64 and I need to show it in a container in a flutter application. I'm trying to do it with the image, pdf and convert packages from dart,but I get an error with the image class and I don't know how to show the image. List<int> pdfDataBytes = base64.decode(fileContent); Image img = decodeImage(pdfDataBytes); PdfImage image = PdfImage( pdf, image: img.data.buffer.asUint8List(), width: img.width, height: img.height); This is the message of the error in the