flutter html to pdf
var htmlContent =
"""
PDF Generated with flutter_html_to_pdf plugin
Sample HTML Table
Month |
Savings |
January |
100 |
February |
50 |
Image loaded from web
""";
var targetPath = "/your/sample/path";
var targetFileName = "example_pdf_file"
var generatedPdfFile = await FlutterHtmlToPdf.convertFromHtmlContent(
htmlContent, targetPath, targetFileName);
|