flutter_html_to_pdf icon indicating copy to clipboard operation
flutter_html_to_pdf copied to clipboard

Background colour is not supported (IOS)

Open manishapaghadar opened this issue 2 years ago • 3 comments

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

manishapaghadar avatar Aug 22 '23 07:08 manishapaghadar

Same problem here,have you solved this bug?

storm52 avatar Nov 28 '23 08:11 storm52

Add this to your style tag.

<style>
    @media print {
    * {
        -webkit-print-color-adjust: exact !important;
      }
    }
</style>

raister21 avatar Dec 20 '23 16:12 raister21