christopherdro / react-native-html-to-pdf

Convert html strings to PDF documents using React Native
MIT License
437 stars 270 forks source link

The PDF on Xiaomi 13 has no margins #318

Open zx405 opened 1 week ago

zx405 commented 1 week ago

On Xiaomi phones, it seems that the entire page is treated as HTML by default, so I add margins to the HTML tags to make it effective. However, on other phones, the inner part with outer margins is HTML, and I don't need any processing to have margins

zx405 commented 1 week ago

yeap! I have found a solution! change the source code 907faac3660329426acff883324c13c change line 167 of code to .setMinMargins(new PrintAttributes.Margins(20, 20, 20, 20)) patch package it later