We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi there, i'm facing an issue with
List<String> lineSplits = content.split('\n'); String data = ""; for (var line in lineSplits) { data = "<li>$line</li>$data"; } final htmlContent = ''' <b style="font-size: 16px; margin-bottom: 5px;">Terms and Conditions</b> <ul style="font-size: 14px; list-style-type: none; margin: 0; padding: 0;"> ${data} </ul> '''; final file = File('${directory.path}/$fileName'); final newpdf = htmltopdfwidgets.Document(); List<htmltopdfwidgets.Widget> widgets = await htmltopdfwidgets.HTMLToPdf().convert(htmlContent); newpdf.addPage(htmltopdfwidgets.MultiPage( maxPages: 200, build: (context) { return widgets; } )); await file.writeAsBytes(await newpdf.save());
Please help look into this. Thanks. Nice package btw, found it suitable for my requirements. 👍
The text was updated successfully, but these errors were encountered:
Hi again, haven't gotten a response yet.
Sorry, something went wrong.
sorry i am busy with other thing currently inline padding and margins are not supported yet
No branches or pull requests
Hi there, i'm facing an issue with
tag styling.
Please help look into this. Thanks.
Nice package btw, found it suitable for my requirements. 👍
The text was updated successfully, but these errors were encountered: