showBytes method

Future<Widget> showBytes(
  1. Uint8List bytes,
  2. PdfPageFormat pageFormat
)

Implementation

Future<Widget> showBytes(Uint8List bytes, PdfPageFormat pageFormat) async {
  return PdfPreview(
    pdfPreviewPageDecoration: BoxDecoration(
      color: Colors.white,
      borderRadius: BorderRadius.circular(12),
    ),
    build: (PdfPageFormat format) async => bytes,
    initialPageFormat: pageFormat,
    canChangePageFormat: false,
  );
}