flutter_html_to_pdf
flutter_html_to_pdf copied to clipboard
Background colour is not supported (IOS)
CSS Background colour not supported while converting html to pdf.
Flutter version: 3.10.6 Mac OS version: 13.5 Device OS Version: 16.6 Device: Iphone 12
https://github.com/Afur/flutter_html_to_pdf/assets/95341949/a837ef68-edd5-4d55-9739-292a85c84f76
Same problem here,have you solved this bug?
Add this to your style tag.
<style>
@media print {
* {
-webkit-print-color-adjust: exact !important;
}
}
</style>